We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b9f76b commit 758be08Copy full SHA for 758be08
1 file changed
examples/javascript/test/browser/chromeSpecificCaps.spec.js
@@ -13,5 +13,15 @@ suite(function (env) {
13
await driver.get('https://www.google.com');
14
await driver.quit();
15
});
16
+
17
+ it('exclude switches', async function () {
18
+ let driver = await env
19
+ .builder()
20
+ .setChromeOptions(options.excludeSwitches('enable-automation'))
21
+ .build();
22
23
+ await driver.get('https://www.google.com');
24
+ await driver.quit();
25
+ });
26
27
0 commit comments