Aref Farzaneh
Aref Farzaneh

Reputation: 27

Send Username and Password using selenium

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

Upvotes: 0

Views: 509

Answers (2)

kennysliding
kennysliding

Reputation: 2967

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

Upvotes: 1

Wasif
Wasif

Reputation: 15470

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

http://username:[email protected]

Upvotes: 0

Related Questions