Skip to content

Latest commit

 

History

History
31 lines (28 loc) · 602 Bytes

File metadata and controls

31 lines (28 loc) · 602 Bytes

MobileTest

Run test

mvn test

Steps to run appium-inspector

start emulator

cd %ANDROID_HOME%\emulator && emulator -avd Pixel_Tablet_API_35

start appium

appium server

open appium-inspector app, configure capabilities and start session

capability builder

{ 
	"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 
	} 
}