An open API service indexing awesome lists of open source software.

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

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
```