0

enter image description here

How to automate this popup in Selenium (Java). Please help me.

Ratmir Asanov
  • 6,237
  • 5
  • 26
  • 40

1 Answers1

1

Try on the below code:

driver.get("http://username:password@your_link");

where username and password -- your creds for authentication popup, your_link -- link to the site, where is raised authentication popup.

Ratmir Asanov
  • 6,237
  • 5
  • 26
  • 40