Gradle plugin that start/stop Appium server on test task execution. Check it out on Gralde Plugins repo.
- Automatically start and stop Appium server on each test task
- Start or stop Appium server manually
- Configure Appium server address and port
Plugin adds following tasks to gradle project
Appium tasks
------------
startAppiumServer - Start Appium server with provided configuration
stopAppiumServer - Stop Appium server with provided configuration
-
Apply appium plugin in
build.gradle
plugins { id "com.zasadnyy.appium" version "1.0.1" }
-
Add Appium server configuration
appium { address "127.0.0.1" port 4723 }
-
Build. Test. Enjoy.
Check the demo project folder for an example project.
- Added default Appium server config
- Fixed crash on missing test task
- Initial release
The project is published under the Apache 2 license. Feel free to clone and modify repo as you want, but don't forget to add a reference to the author.