1 appium官网
2 app类型与UI自动化测试
- Native:使用appium
- Hybrid(Native+Webview):切换appium和selenium
- H5(Webview):使用selenium
3 Hybrid自动化测试
- debug模式
- 模拟器:不需要开发开启webview debug模式
- 真机:需要开发开启webview debug模式
- debug模式开启代码
-
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {WebView.setWebContentsDebuggingEnabled(true);}
-
- webview自动化测试需要指定chromedriver版本
- 查看手机chrome内核
- adb shell am start -a android.intent.action.VIEW -d https://liulanmi.com/labs/core.html
- 以此来确定caps中chromedriverExecutableDir版本
- chromedriver下载:https://npm.taobao.org/mirrors/chromedriver
- webbiew标识:
- android.webkit.WebView
- Hybrid自动化测试需要切换context
- 查看上下文:driver.contexts
- 切换到webview:driver.switch_to.context('WEBVIEW_com.kaikeba.android')
- 当前上下文:driver.current_context
- 切换到native:driver.switch_to.context('NATIVE_APP')
- 查看手机chrome内核