We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In
loginElem = WebDriverWait(browser, 10).until( EC.element_to_be_clickable( (By.LINK_TEXT, "Login to vote")) ) loginElem.click() print('[click] Login to Vote')
crashes, it seems that sometimes it take too long to redirect to to the login page and the program crashes.
However sometimes it works, but it has the same problems in
time.sleep(DELAY) browser.refresh() # Wait for redirects until authorize page WebDriverWait(browser, TIMEOUT).until( EC.url_contains('https://discord.com/oauth2/authorize') ) print('[wait] Authorize page')
It seems that it does not detect when the URL properly contains the string
The text was updated successfully, but these errors were encountered:
if it takes too long to redirect, it could be your internet issue - you can try increasing the timeout which is currently 10s now
for the 2nd part, i just tested and it's working fine for me, if your url you get is different you could try replacing it
Sorry, something went wrong.
No branches or pull requests
In
crashes, it seems that sometimes it take too long to redirect to to the login page and the program crashes.
However sometimes it works, but it has the same problems in
It seems that it does not detect when the URL properly contains the string
The text was updated successfully, but these errors were encountered: