I want to scrape a local website using selenium and need to send Username and Password to be logged in but there is no inspect element to find these elements. The website is like this:

-
have you tried this? stackoverflow.com/questions/43434362/…Muhammad Junaid Haris– Muhammad Junaid Haris2020-11-18 08:56:21 +00:00Commented Nov 18, 2020 at 8:56
Add a comment
|
2 Answers
To send keys to popup using Selenium, you can first switch your target to the popup
obj = driver.switch_to.alert
Then send keys using
obj.send_keys(username)
obj.send_keys(str(Keys.TAB)) # send a tab to go to the next field
obj.send_keys(password)
Reference: Handle alert popup inselenium