-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.16 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "appium-e2e",
"type": "module",
"description": "Boilerplate project to run WebdriverIO tests with Appium to test Calculator on Android",
"engines": {
"node": "^16.17.0 || >=18.0.0"
},
"devDependencies": {
"@wdio/allure-reporter": "^9.2.0",
"@wdio/appium-service": "^9.2.0",
"@wdio/browserstack-service": "^9.2.0",
"@wdio/cli": "^9.2.0",
"@wdio/junit-reporter": "^9.2.0",
"@wdio/local-runner": "^9.2.0",
"@wdio/mocha-framework": "^9.2.0",
"@wdio/spec-reporter": "^9.2.0",
"@wdio/types": "^9.2.0",
"appium": "^2.0.0",
"appium-uiautomator2-driver": "^3.6.0",
"expect-webdriverio": "^5.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.0.0",
"wdio-wait-for": "^3.0.6",
"webdriverio": "^9.2.0"
},
"scripts": {
"test:bs": "wdio run ./config/wdio.conf.android.bs.ts",
"test": "wdio run ./config/wdio.conf.android.ts",
"allure": "npx allure serve ./reporters/allure-results",
"allure:generate": "npx allure generate ./reporters/allure-results --clean",
"calc": "adb shell am start -n com.sec.android.app.popupcalculator/.Calculator"
},
"dependencies": {
"dotenv": "^16.3.1"
}
}