Я делаю скрипт автоматизации на python для чтения дампа учетных записей из файла .txt и пробую каждый из них в приложении.Скрипт работает, но после успешного входа программа продолжает работать.Приложение является Minecraft Launcher, если кто-то найдет его полезным.
import pyautogui
import time
aclist = open("C:\\Users\\Administrator\\Desktop\\dropmc.txt", "r")
content = aclist.read().splitlines()
for i in content:
i = i.split(':')
# The code to type in username and password was here, its just mouse movement and clicks
# After the final mouse click, I want to be able to check if the login was successful
aclist.close()