0
0
mirror of https://github.com/ok-oldking/ok-wuthering-waves.git synced 2025-06-03 09:25:19 +00:00

支持自动登录游戏

This commit is contained in:
firedcto@gmail.com 2024-10-15 10:31:33 +08:00
parent 9f55c1b2f2
commit 28e930de65

View File

@ -26,10 +26,12 @@ class AutoLoginTask(BaseWWTask, TriggerTask):
elif self.find_one('login_account', threshold=0.7):
self.wait_until(lambda: self.find_one('login_account', threshold=0.7) is None,
pre_action=lambda: self.click_relative(0.5, 0.9),
wait_until_check_delay=3, time_out=20)
wait_until_check_delay=3, time_out=30)
self.wait_until(lambda: self.find_one('monthly_card', threshold=0.7) or self.in_team_and_world(),
pre_action=lambda: self.click_relative(0.5, 0.9),
wait_until_check_delay=3, time_out=60)
self.click_relative(0.5, 0.9)
wait_until_check_delay=3, time_out=120)
self.wait_until(lambda: self.in_team_and_world(),
post_action=lambda: self.click_relative(0.5, 0.9),
wait_until_check_delay=3, time_out=5)
self.log_info('Auto Login Success', notify=True)
self._logged_in = True