I want to test a website in a private network. When I go to "http://www.crazysite.com" the proxy redirects me to "http://login.craxysite.com/?aLotOfParams=true". This site opens the "your connection is not private" popup.
I tried to skip the authorization with ChromeOptions without success.
Can I log in on it? How?
WebDriver driver = new ChromeDriver();
driver.get("http://www.crazysite.com");
System.out.println(driver.getPageSource());
getPageSource() Give me the page under the popup.
I use Chrome e ChromeDriver Version 88.0.4324.
