https://github.com/testingbot/specflow-app-example
Example on using Specflow + C# with Appium on TestingBot
https://github.com/testingbot/specflow-app-example
appium specflow testingbot
Last synced: 3 months ago
JSON representation
Example on using Specflow + C# with Appium on TestingBot
- Host: GitHub
- URL: https://github.com/testingbot/specflow-app-example
- Owner: testingbot
- Created: 2020-06-05T14:34:59.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-05T14:35:56.000Z (about 5 years ago)
- Last Synced: 2025-01-19T19:17:02.023Z (5 months ago)
- Topics: appium, specflow, testingbot
- Language: C#
- Homepage: https://testingbot.com/support/mobile/specflow.html
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## TestingBot - SpecFlow Mobile App Testing
TestingBot provides a grid of browsers and mobile devices to run Automated tests.
This example demonstrates how to use SpecFlow and C# to run an Automated Tests with Appium on Mobile Devices, located in the TestingBot Cloud.### Environment Setup
1. Setup
* Clone this repository2. TestingBot Credentials
* Add your TestingBot Key and Secret as environmental variables. You can find these in the [TestingBot Dashboard](https://testingbot.com/members/).
```
$ export TB_KEY=
$ export TB_SECRET=
```## Running Tests
* Open the project in Visual Studio and run the test.
Or use `dotnet test` to run the test from your console.You will see the test result in the [TestingBot Dashboard](https://testingbot.com/members/)
### Uploading your app for testing
This example code will use an example `.apk` file. To test your own `.apk` or `.ipa`, please make sure to read our [Mobile App Documentation](https://testingbot.com/support/mobile/help.html).### Resources
* [TestingBot Documentation](https://testingbot.com/support/mobile/specflow.html)
* [Appium Documentation](http://appium.io/)