-
Notifications
You must be signed in to change notification settings - Fork 118
New issue
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
Unable to locate element: #33
Comments
…tch-1 corrects issue brutalsavage#33 calling element by name
change at scraper.py this line: browser.find_element_by_id(loginbutton').click() to this browser.find_element_by_id('u_0_b').click() |
the id changes continuously so you can use 'browser.find_element_by_name('login').click()' but this is depricated too. The whole script need to be updated. |
I'm having this error:
NoSuchElementException: Message: no such element: Unable to locate element: {"method":"css selector","selector":"[id="loginbutton"]"}
(Session info: chrome=85.0.4183.83)
Any advice?
The text was updated successfully, but these errors were encountered: