-1

I am trying to handle Browser authentication popup in Chrome using Selenium with C#. The problem is that , this is not alert so i could switch to it and its not even windows popup which i could have handled using AutoIt.

Kindly suggest options what can be done.

authentication required

live2
  • 3,771
  • 2
  • 37
  • 46

1 Answers1

0

You can do :

new Actions(driver).SendKeys(username).Perform();
SendKeys.SendWait("{TAB}");
new Actions(driver).SendKeys(password).Perform();
SendKeys.SendWait("{ENTER}");