'How to find which element to use with Selenium Python?
I'm trying to log in to this website but it's created with js, I think it is React which I have no experience.
This is an image of inspected code of the website that I try to log in.
I tried this...
email_field = browser.find_element_by_name('input_login_3kzbI')
email_field = browser.find_element_by_id('login-modal-email')
and then it should go this, but it fails on the line above...
email_field.send_keys("[email protected]")
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|

