-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathsafariSpecificCap.spec.js
35 lines (30 loc) · 1.07 KB
/
safariSpecificCap.spec.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
const safari = require('selenium-webdriver/safari');
const {Browser, Builder} = require("selenium-webdriver");
const options = new safari.Options();
const process = require('node:process');
describe('Should be able to Test Command line arguments', function () {
(process.platform === 'darwin' ? it : it.skip)('headless', async function () {
let driver = new Builder()
.forBrowser(Browser.SAFARI)
.setSafariOptions(options)
.build();
await driver.get('https://www.selenium.dev/selenium/web/blank.html');
await driver.quit();
});
});
describe('Should be able to enable Safari logging', function () {
this.timeout(15000);
(process.platform === 'darwin' ? it : it.skip)('enableLogs', async function () {
const options = new safari.Options()
.setLoggingPrefs({ browser: 'ALL' }); // Enable browser-level logging
let driver = new Builder()
.forBrowser(Browser.SAFARI)
.setSafariOptions(options)
.build();
try {
await driver.get('https://www.selenium.dev/');
} finally {
await driver.quit();
}
});
});