mirror of
https://github.com/appium/appium.git
synced 2026-01-16 07:09:56 -06:00
19 lines
544 B
Markdown
19 lines
544 B
Markdown
Sample Appium JUnit project
|
|
---
|
|
|
|
This contains the source code for running sample [Appium](http://github.com/appium/appium) tests using [JUnit](http://www.junit.org).
|
|
|
|
In order to run the tests, you will need to install [Apache Maven](http://maven.apache.org), and Appium (according to the Appium [installation instructions](https://github.com/appium/appium).
|
|
|
|
You will then need to start appium, eg:
|
|
|
|
appium
|
|
|
|
To compile and run all tests, run:
|
|
|
|
mvn test
|
|
|
|
To run a single test, run:
|
|
|
|
mvn -Dtest=com.saucelabs.appium.SimpleTest test
|