Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/prashanth-sams/appium-webdriverio
- Owner: prashanth-sams
- Created: 2019-11-24T13:08:30.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T13:18:41.000Z (almost 2 years ago)
- Last Synced: 2024-10-17T06:19:45.891Z (2 months ago)
- Topics: android, appium, appium-android, appium-framework, appium-ios, appium-javascript, appium-webdriverio, webdriverio-boilerplate-framework
- Language: JavaScript
- Homepage:
- Size: 20.6 MB
- Stars: 2
- Watchers: 2
- Forks: 3
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
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
```