I'm trying to get my tests to ignore the chrome warning message of "site is using a connection that's not secure".
What do i need to set to get webdriver to either ignore this, or set the chrome options. Currently its just set as headless.
ChromeOptions co = new ChromeOptions(); co.addArguments("headless","disable-gpu");
I have tried --allow-running-insecure-content
but that doesn't seem to work.