This commit is contained in:
27942
2026-02-27 15:50:30 +08:00
parent dbf8562a00
commit 3044cfc096
31 changed files with 615 additions and 1 deletions

View File

@@ -1051,9 +1051,15 @@ def main() -> None:
def input_code(page, code):
page.ele('x://input[@placeholder="请输入验证码"]').input(code)
page.ele('x://input[@placeholder="请输入验证码"]').input(code,clear=True)
time.sleep(0.5)
page.listen.start("hn_userEquitys/common/order")
page.ele('x://*[@id="app"]/div/img').click(by_js=True)
time.sleep(0.5)
page.ele('x://*[@id="app"]/div/div[7]/div/div[3]/button[2]').click(by_js=True)
res = page.listen.wait()
print(res.response.body)
if __name__ == "__main__":
main()