0

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: enter image description here

2 Answers2

1

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

kennysliding
  • 2,783
  • 1
  • 10
  • 31
0

First of all, try this URL format in driver.get():

http://username:password@the-site.com
Wasif
  • 14,755
  • 3
  • 14
  • 34