Skip to content

Commit

Permalink
login fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
maxxrk committed May 31, 2024
1 parent 593eec8 commit 322c767
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions vanguard/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,13 +213,14 @@ def login(self, username, password, last_four):
pass
if login_state in [2,3,4]:
try:
print("trying to find the i dont see this")
self.page.wait_for_selector(
"h1.page-title:nth-child(1)",
"a:has-text('I don\\'t see this in my app')",
timeout=5000,
).click()
self.page.wait_for_selector(
"button:has-text('Continue')",
timeout=10000,
timeout=5000,
).click()
except PlaywrightTimeoutError:
pass
Expand Down

0 comments on commit 322c767

Please sign in to comment.