We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7a068d5 + f7a469f commit 3501378Copy full SHA for 3501378
examples/javascript/test/capabilities/pageLoading.spec.js
@@ -34,5 +34,14 @@ suite(function (env) {
34
await driver.get('https://www.selenium.dev/selenium/web/blank.html');
35
await driver.quit();
36
});
37
+ it('Should be able to accept certs', async function () {
38
+ let driver = await env
39
+ .builder()
40
+ .setChromeOptions(options.setAcceptInsecureCerts(true))
41
+ .build();
42
+
43
+ await driver.get('https://www.selenium.dev/selenium/web/blank.html');
44
+ await driver.quit();
45
+ });
46
47
}, { browsers: [Browser.CHROME, Browser.FIREFOX]});
0 commit comments