https://github.com/mikeludemann/webdriverio-appium-testing
Simple tests in combination with WebDriverIO and Appium
https://github.com/mikeludemann/webdriverio-appium-testing
android appium ios mocha selenium webdriverio
Last synced: 2 months ago
JSON representation
Simple tests in combination with WebDriverIO and Appium
- Host: GitHub
- URL: https://github.com/mikeludemann/webdriverio-appium-testing
- Owner: mikeludemann
- License: mit
- Created: 2019-04-05T13:34:58.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-05T13:56:07.000Z (about 7 years ago)
- Last Synced: 2025-03-28T02:47:07.787Z (about 1 year ago)
- Topics: android, appium, ios, mocha, selenium, webdriverio
- Language: JavaScript
- Size: 549 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WebdriverIO Testing
## Prerequisite
```
(sudo) npm install -g selenium-standalone
(sudo) npm install @wdio/cli
(sudo) npm install -g appium
(sudo) npm install -g appium-doctor
```
## Before starting any tests
```
selenium-standalone install
selenium-standalone start
```
## Create config file
```
./node_modules/.bin/wdio config
```
## Test execute
### Web testing
```
./node_modules/.bin/wdio wdio.conf.js
```
### Mobile Web testing
```
./node_modules/.bin/wdio wdio.appium.conf.js
```