I am using
- Windows 10 Pro
- Chrome Version 83.0.4103.97 (Official Build) (64-bit)
- selenium ChromeDriver 83.0.4103.39
and simple C# code which just open google login page
var options = new ChromeOptions();
IWebDriver driver = new OpenQA.Selenium.Chrome.ChromeDriver();
driver.Url = "https://accounts.google.com/";
Console.ReadKey();
When I type email for login I see the message "Couldn't sign you in" and one of the reasons for that error "Use automation testing frameworks" which I am using.
What to do with that?
Duke
