Skip to content

Commit

Permalink
[nodejs] Deleting a special clause for old Firefox versions
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Feb 1, 2019
1 parent 685a737 commit 88346af
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions javascript/node/selenium-webdriver/test/actions_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,6 @@ test.suite(function(env) {
});

it('doubleClick(element)', async function() {
// This test requires Firefox 59+.
if (env.browser.name === Browser.FIREFOX) {
await driver.quit();
driver = await env.builder()
.setFirefoxOptions(
new firefox.Options().setBinary(firefox.Channel.NIGHTLY))
.build();
}
await driver.get(fileServer.whereIs('/data/actions/click.html'));

let box = await driver.findElement(By.id('box'));
Expand Down

0 comments on commit 88346af

Please sign in to comment.