Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[UIAutomator](http://developer.android.com/tools/testing/testing_ui.html) is a
great tool to perform Android UI testing, but to do it, you have to write java
code, compile it, install the jar, and run. It's a complex steps for all
code, compile it, install the jar, and run. It's a complex step for all
testers...

This project is to build a light weight jsonrpc server in Android device, so
Expand All @@ -12,13 +12,13 @@ that we can just write PC side script to write UIAutomator tests.

- Run command:

$ ./gradlew build
$ ./gradlew packageDebugAndroidTest
$ ./gradlew build
$ ./gradlew packageDebugAndroidTest

- Run the jsonrcp server on Android device
- Run the jsonrpc server on Android device

$ ./gradlew cC
$ adb forward tcp:9008 tcp:9008 # tcp forward
$ ./gradlew cC
$ adb forward tcp:9008 tcp:9008 # tcp forward

# How to use

Expand Down