Skip to content

Commit

Permalink
[JS] Skip Firefox window tests
Browse files Browse the repository at this point in the history
  • Loading branch information
harsha509 committed Sep 12, 2022
1 parent b4df49e commit 84bb6fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions javascript/node/selenium-webdriver/test/window_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ test.suite(function (env) {
assert.strictEqual(await driver.getTitle(), 'We Arrive Here')
})

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

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

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

0 comments on commit 84bb6fa

Please sign in to comment.