Files
damai/scripts/multi_account_manager.py
Jeason b16a782f67
Some checks failed
Deploy static content to Pages / deploy (push) Has been cancelled
new changes
2026-03-13 12:05:03 +08:00

14 lines
499 B
Python

from selenium_driver import start_selenium_driver
def manage_multiple_accounts(account_info, ticket_settings):
target_url = account_info['target_url']
driver = start_selenium_driver(target_url)
# 登录流程
driver.find_element(By.ID, "username_field").send_keys(account_info['username'])
driver.find_element(By.ID, "password_field").send_keys(account_info['password'])
driver.find_element(By.ID, "login_button").click()
# 执行抢票操作
# 更多的操作...