Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/prashanth-sams/appium-webdriverio

Used webdriverio boilerplate framework in IOS and Android test apps; example modified for easy understanding
https://github.com/prashanth-sams/appium-webdriverio

android appium appium-android appium-framework appium-ios appium-javascript appium-webdriverio webdriverio-boilerplate-framework

Last synced: about 2 months ago
JSON representation

Used webdriverio boilerplate framework in IOS and Android test apps; example modified for easy understanding

Awesome Lists containing this project

README

        

# appium-webdriverio
> **Note:** It's a copy of webdriverio boilerplate framework

## Features
- Android and IOS support
- Allure report
- Generic screenshot on failure
- Screenshots in Allure report
- Docker service for allure report

## Runner
> iOS
```
npm run ios.app
```
> Android
```
npm run android.app
```

## Report
> Allure
- Generic report
```
allure generate allure-results && allure open
```
- Report served through Docker service
```
docker-compose up -d
```
Now, open the URL http://localhost:4040/ and to see the api docs http://localhost:5050/

Finally bring down docker service
```
docker-compose down
```

## List devices
> iOS
```
instruments -s devices
xcrun simctl list
```
> Android
```
adb devices
```