В браузере Chrome, когда мы открываем приложение, мы получаем незащищенных данные :, screenshotLINKВ Chrome селене драйвера мы получаем ошибку в незащищенных данных :,
я попробовал другое решение вместе с кодом ниже еще нет успеха !!
Строка chromeDriverPath = projectLocationPath + "\ Resources \ chromedriver.exe";
System.setProperty("webdriver.chrome.driver", chromeDriverPath);
DesiredCapabilities capabilities = DesiredCapabilities.chrome();
ChromeOptions options = new ChromeOptions();
options.addArguments("test-type");
options.addArguments("--start-maximized");
options.addArguments("--disable-web-security");
options.addArguments("--allow-running-insecure-content");
capabilities.setCapability("chrome.binary",chromeDriverPath);
capabilities.setCapability(ChromeOptions.CAPABILITY, options);
webdriver = new ChromeDriver(capabilities);
driver.get(url);
я добавил все необходимые возможности
URL - https://tsetigndev123.dev.hfgh.com