This commit is contained in:
2025-12-12 14:58:24 +08:00
parent 45ff5a62e3
commit 3bdb45bb50
4 changed files with 34 additions and 37 deletions

View File

@@ -279,8 +279,8 @@ class Auto:
postcode = info['child_postcode']
parent_phone = info['parent_phone']
province = info['parent_state']
# email = mail_.email_create_random()
email = 'zhiyu@qq.com'
email = mail_.email_create_random()
# email = 'zhiyu@qq.com'
logger.debug(f"child_full_name --> {child_full_name}")
logger.debug(f"parent_full_name --> {parent_full_name}")
logger.debug(f"child_birthday --> {child_birthday}")
@@ -515,10 +515,6 @@ def run_task_with_proxy(proxy: str, stop_event: threading.Event) -> None:
return
if stop_event.is_set():
return
if not auto.click_continue():
return
if stop_event.is_set():
return
auto.fill_questionnaire()
except Exception as e:
logger.error(f"执行任务异常: {e}")
@@ -762,4 +758,4 @@ def main2():
if __name__ == "__main__":
main2()
main()