├── .gitignore ├── LICENSE ├── README.md ├── README_en.md ├── apis ├── cv.go ├── device.go ├── device_test.go ├── ime.go ├── ime_test.go ├── instance.go ├── keycode.go ├── service.go ├── service_test.go ├── settings.go ├── setup.go ├── setup_test.go ├── uiobject.go ├── uiobject_test.go ├── xpath.go └── xpath_test.go ├── go.mod ├── go.sum ├── models └── device_info.go ├── operations.go └── shared_request.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantonglang/go-mobile-automation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantonglang/go-mobile-automation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantonglang/go-mobile-automation/HEAD/README.md -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantonglang/go-mobile-automation/HEAD/README_en.md -------------------------------------------------------------------------------- /apis/cv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantonglang/go-mobile-automation/HEAD/apis/cv.go -------------------------------------------------------------------------------- /apis/device.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantonglang/go-mobile-automation/HEAD/apis/device.go -------------------------------------------------------------------------------- /apis/device_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantonglang/go-mobile-automation/HEAD/apis/device_test.go -------------------------------------------------------------------------------- /apis/ime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantonglang/go-mobile-automation/HEAD/apis/ime.go -------------------------------------------------------------------------------- /apis/ime_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantonglang/go-mobile-automation/HEAD/apis/ime_test.go -------------------------------------------------------------------------------- /apis/instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantonglang/go-mobile-automation/HEAD/apis/instance.go -------------------------------------------------------------------------------- /apis/keycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantonglang/go-mobile-automation/HEAD/apis/keycode.go -------------------------------------------------------------------------------- /apis/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantonglang/go-mobile-automation/HEAD/apis/service.go -------------------------------------------------------------------------------- /apis/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantonglang/go-mobile-automation/HEAD/apis/service_test.go -------------------------------------------------------------------------------- /apis/settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantonglang/go-mobile-automation/HEAD/apis/settings.go -------------------------------------------------------------------------------- /apis/setup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantonglang/go-mobile-automation/HEAD/apis/setup.go -------------------------------------------------------------------------------- /apis/setup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantonglang/go-mobile-automation/HEAD/apis/setup_test.go -------------------------------------------------------------------------------- /apis/uiobject.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantonglang/go-mobile-automation/HEAD/apis/uiobject.go -------------------------------------------------------------------------------- /apis/uiobject_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantonglang/go-mobile-automation/HEAD/apis/uiobject_test.go -------------------------------------------------------------------------------- /apis/xpath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantonglang/go-mobile-automation/HEAD/apis/xpath.go -------------------------------------------------------------------------------- /apis/xpath_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantonglang/go-mobile-automation/HEAD/apis/xpath_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantonglang/go-mobile-automation/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantonglang/go-mobile-automation/HEAD/go.sum -------------------------------------------------------------------------------- /models/device_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantonglang/go-mobile-automation/HEAD/models/device_info.go -------------------------------------------------------------------------------- /operations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantonglang/go-mobile-automation/HEAD/operations.go -------------------------------------------------------------------------------- /shared_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantonglang/go-mobile-automation/HEAD/shared_request.go --------------------------------------------------------------------------------