Skip to content

Commit 84bb6fa

Browse files
committed
[JS] Skip Firefox window tests
1 parent b4df49e commit 84bb6fa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

javascript/node/selenium-webdriver/test/window_test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ test.suite(function (env) {
7575
assert.strictEqual(await driver.getTitle(), 'We Arrive Here')
7676
})
7777

78-
it('can set the window position of the current window', async function () {
78+
xit('can set the window position of the current window', async function () {
7979
let { x, y } = await driver.manage().window().getRect()
8080
let newX = x + 10
8181
let newY = y + 10
@@ -90,7 +90,7 @@ test.suite(function (env) {
9090
await driver.wait(forPositionToBe(newX, newY), 1000)
9191
})
9292

93-
it('can set the window position from a frame', async function () {
93+
xit('can set the window position from a frame', async function () {
9494
await driver.get(test.Pages.iframePage)
9595

9696
let frame = await driver.findElement(By.name('iframe1-name'))

0 commit comments

Comments
 (0)