Skip to content

Commit ac26e4a

Browse files
committed
Enabling browsingContext.spec.js test
1 parent ee9630a commit ac26e4a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/javascript/test/bidirectional/browsingContext.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ describe('Browsing Context', function () {
422422
await driver.wait(until.titleIs('We Arrive Here'), 2500)
423423
});
424424

425-
it.skip('Get All Top level browsing contexts', async () => {
425+
it('Get All Top level browsing contexts', async () => {
426426
const id = await driver.getWindowHandle()
427427
const window1 = await BrowsingContext(driver, {
428428
browsingContextId: id,

examples/javascript/test/browser/safariSpecificCap.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const options = new safari.Options();
44
const process = require('node:process');
55

66
describe('Should be able to Test Command line arguments', function () {
7-
(process.platform === 'darwin' ? it : it.skip)('headless', async function () {
7+
(process.platform === 'darwin' ? it : it.skip)('safari caps', async function () {
88
let driver = new Builder()
99
.forBrowser(Browser.SAFARI)
1010
.setSafariOptions(options)
@@ -13,4 +13,4 @@ describe('Should be able to Test Command line arguments', function () {
1313
await driver.get('https://www.selenium.dev/selenium/web/blank.html');
1414
await driver.quit();
1515
});
16-
});
16+
});

0 commit comments

Comments
 (0)