Skip to content

Commit

Permalink
[js] Add an example test using async/await with mocha for #2969
Browse files Browse the repository at this point in the history
  • Loading branch information
jleyba committed Feb 20, 2017
1 parent 30012e4 commit 9f39acd
Showing 1 changed file with 68 additions and 0 deletions.
68 changes: 68 additions & 0 deletions javascript/node/selenium-webdriver/example/async_await_test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
// Licensed to the Software Freedom Conservancy (SFC) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The SFC licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.

/**
* @fileoverview Example Mocha tests using async/await.
*
* Usage:
*
* mocha -t 20000 --harmony_async_await \
* selenium-webdriver/example/async_await_test.js
*
* You can change which browser is started with the SELENIUM_BROWSER environment
* variable:
*
* SELENIUM_BROWSER=chrome \
* mocha -t 20000 --harmony_async_await \
* selenium-webdriver/example/async_await_test.js
*/

'use strict';

const assert = require('assert');
const {Builder, By, promise, until} = require('..');

// async/await do not work well when the promise manager is enabled.
// See https://github.com/SeleniumHQ/selenium/issues/3037
//
// 3037 does not impact these specific examples, but it is still recommended
// that you disable the promise manager when using async/await.
promise.USE_PROMISE_MANAGER = false;

describe('Google Search', function() {
let driver;

beforeEach(async function() {
driver = await new Builder().forBrowser('firefox').build();
});

afterEach(async function() {
await driver.quit();
});

it('example', async function() {
await driver.get('https://www.google.com/ncr');

await driver.findElement(By.name('q')).sendKeys('webdriver');
await driver.findElement(By.name('btnG')).click();

await driver.wait(until.titleIs('webdriver - Google Search'), 1000);

let url = await driver.getCurrentUrl();
assert.equal(url, 'https://www.google.com/#q=webdriver');
});
});

0 comments on commit 9f39acd

Please sign in to comment.