Package Exports
- appium-windows-driver
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (appium-windows-driver) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Appium Windows Driver
Appium Windows Driver is a test automation tool for Windows devices. Appium Windows Driver automates UWP apps on Windows 10. In the future it will automate other kinds of native, hybrid and mobile web apps on Windows 10 and Windows 10 mobile simulators and real devices. Appium Windows Driver is part of the Appium mobile test automation tool.
Installation
npm install appium-windows-driverUsage
Import Windows Driver, set desired capabilities and create a session:
import { WindowsDriver } from `appium-windows-driver`
let defaultCaps = {
app: 'your.app.id',
platformName: 'Windows'
};
let driver = new WindowsDriver();
await driver.createSession(defaultCaps);Watch code for changes, re-transpile and run unit tests:
gulpTest
You can run unit and e2e tests:
// unit tests:
gulp once
// e2e tests
gulp e2e-test