https://github.com/jmr85/mobiletest
Automated testing for Android ApiDemos application with Appium 2.11.2 and java-client 9.3.0
https://github.com/jmr85/mobiletest
appium appium-java-testng java testng
Last synced: 8 months ago
JSON representation
Automated testing for Android ApiDemos application with Appium 2.11.2 and java-client 9.3.0
- Host: GitHub
- URL: https://github.com/jmr85/mobiletest
- Owner: jmr85
- Created: 2024-08-13T06:58:35.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-19T19:34:17.000Z (almost 2 years ago)
- Last Synced: 2025-03-05T17:37:44.762Z (over 1 year ago)
- Topics: appium, appium-java-testng, java, testng
- Language: Java
- Homepage:
- Size: 3.28 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MobileTest
## Run test
```cmd
mvn test
```
## Steps to run appium-inspector
### start emulator
```cmd
cd %ANDROID_HOME%\emulator && emulator -avd Pixel_Tablet_API_35
```
### start appium
```cmd
appium server
```
### open appium-inspector app, configure capabilities and start session
capability builder
```json
{
"platformName": "Android",
"appium:options": {
"automationName": "UiAutomator2",
"platformVersion": "15.0",
"app": "C:\\Users\\{user_name}\\eclipse-workspace\\MobileTest\\src\\ApiDemos-debug.apk",
"deviceName": "Pixel_Tablet_API_35",
"noReset": true
}
}
```