Package Exports
- appwright
- appwright/dist/index.js
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 (appwright) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Appwright
Appwright is a test runner for e2e testing of mobile apps, based on Playwright and Appium.
Usage
Install
npm i --save-dev appwright
touch appwright.config.tsConfigure
// In appwright.config.ts
import { defineConfig, Platform } from "appwright";
export default defineConfig({
projects: [
{
name: "android",
use: {
platform: Platform.ANDROID,
device: {
provider: "emulator", // or 'local-device' or 'browserstack'
},
buildPath: "app-release.apk",
},
},
{
name: "ios",
use: {
platform: Platform.IOS,
device: {
provider: "emulator", // or 'local-device' or 'browserstack'
},
buildPath: "app-release.app", // Path to your .app file
},
},
],
});Configuration Options
platform: The platform you want to test on, such as 'android' or 'ios'.provider: The device provider where you want to run your tests. You can choose betweenbrowserstack,emulator, orlocal-device.buildPath: The path to your build file. For Android, it should be an APK file. For iOS, if you are running tests on real device, it should be an.ipafile. For running tests on an emulator, it should be a.appfile.
Run tests
To run tests, you need to specify the project name with --project flag.
npx appwright test --project android
npx appwright test --project iosRun tests on browserStack
Appwright supports BrowserStack out of the box. To run tests on BrowserStack, update the provider in above config:
{
name: "android",
use: {
platform: Platform.ANDROID,
device: {
provider: "browserstack", // <-- add this provider
//Add the device name on which you want to run the tests, you can find the
//supported devices here: https://www.browserstack.com/list-of-browsers-and-platforms/app_automate
name: "Google Pixel 8",
//Add the OS version on which you want to run the tests.
osVersion: "14.0",
},
buildPath: "app-release.apk",
},
},