We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a15dd7a commit f7a469fCopy full SHA for f7a469f
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