We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f20f5df commit a9ea48eCopy full SHA for a9ea48e
examples/javascript/test/browser/chromeSpecificCaps.spec.js
@@ -35,5 +35,15 @@ suite(function (env) {
35
// As tests runs in ci, quitting the driver instance to avoid any failures
36
await driver.quit();
37
});
38
+
39
+ xit('Keep browser open - set detach to true ', async function () {
40
+ let driver = await env
41
+ .builder()
42
+ .setChromeOptions(options.setChromeBinaryPath(`Path to chrome binary`))
43
+ .build();
44
45
+ await driver.get('https://www.google.com');
46
+ await driver.quit();
47
+ });
48
49
0 commit comments