Created
March 6, 2018 13:42
-
-
Save jeremypele/8ed50278aab405c2df73e788391c863d to your computer and use it in GitHub Desktop.
nativescript-appium-wd-driver-example.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { AppiumDriver, createDriver, SearchOptions } from 'nativescript-dev-appium' | |
import { runType } from 'nativescript-dev-appium/lib/parser' | |
import { Direction } from 'nativescript-dev-appium/lib/direction' | |
import { assert } from 'chai' | |
describe('E2E Specs', () => { | |
let driver: AppiumDriver | |
before(async () => (driver = await createDriver())) | |
after(async () => await driver.quit()) | |
/* | |
* WD Examples | |
*/ | |
describe('Webdriver Examples', async () => { | |
/* | |
* Orientation | |
*/ | |
it('Changes device orientation', () => { | |
driver.driver.setOrientation('landscape') | |
// SPEC HERE | |
}) | |
/* | |
* Device modes | |
*/ | |
it('Toggles airplace mode (and test the offline mode)', () => { | |
driver.driver.toggleAirplaneModeOnDevice() | |
// SPEC HERE | |
}) | |
/* | |
* Geolocation | |
*/ | |
it('Sets Montreal Location', () => { | |
driver.driver.setGeoLocation(45.5, 73.5, 0) | |
// SPEC HERE | |
}) | |
/* | |
* Dialogs | |
*/ | |
it('Accepts any alert', () => { | |
await driver.driver.acceptAlert() | |
// SPEC HERE | |
}) | |
it('Fills a prompt and submit it', () => { | |
await driver.driver.alertKeys('FOO') | |
await driver.driver.acceptAlert() | |
// SPEC HERE | |
}) | |
}) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment