https://github.com/testingbot/webdriverio-examples
WebdriverIO Examples with TestingBot
https://github.com/testingbot/webdriverio-examples
testingbot wdio webdriverio
Last synced: 3 months ago
JSON representation
WebdriverIO Examples with TestingBot
- Host: GitHub
- URL: https://github.com/testingbot/webdriverio-examples
- Owner: testingbot
- License: mit
- Created: 2022-02-25T13:21:41.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-01-06T15:52:26.000Z (5 months ago)
- Last Synced: 2025-01-19T19:17:11.002Z (4 months ago)
- Topics: testingbot, wdio, webdriverio
- Language: JavaScript
- Homepage: https://testingbot.com/support/getting-started/webdriverjs.html
- Size: 199 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WebdriverIO Demonstration Scripts
This repository contains various examples showing how to run [WebdriverIO](https://webdriver.io/) tests on the [TestingBot](https://testingbot.com/) browser grid.
## Framework examples
- [WebdriverIO with CucumberJS](webdriver/examples/cucumberjs)
- [WebdriverIO with Jasmine](webdriver/examples/jasmine)
- [WebdriverIO with Mocha](webdriver/examples/mocha)
- [Testing with file upload](webdriver/examples/upload)
- [Appium Mobile Web Testing](appium-web/examples/w3c)
- [Appium Mobile App Testing](appium-app/examples/app-automation)## Prerequisites
In order to run these scripts you must complete the following prerequisite steps:
- Install [Git](https://git-scm.com/downloads)
- Install [Node/NPM](https://nodejs.org/en/download/)### Run A Sample Test
1. Clone this Repository and set your [TestingBot key and secret](https://testingbot.com):
```
git clone https://github.com/testingbot/webdriverio-examples.git
export TB_KEY=********
export TB_SECRET=*******
```2. Please check all README.md files in each example directory to see how to get the test running.