'how to solve "Your Connection Is Not Private" on katalon
While running katalon testcases on windows. I am facing
"Your connection is not private"
How can I bypass this in headless Chrome?
I have tried to use web UI for acceptInsecureCerts but still not working.
Solution 1:[1]
Try the following, as seen here:
- Under Project Settings > WebUI > Chrome add a new entry with name =
acceptInsecureCerts
with boolean value of True - try with name =
args
with list type and value =[--ignore-certificate-errors]
If you wish to do that programmatically, try
ChromeOptions options = new ChromeOptions();
options.addArguments("--ignore-certificate-errors");
WebDriver driver = new ChromeDriver(options);
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Mate Mrše |