App自动化测试 | Android WebView测试

混合应用中包含 Web 视图的应用,在 App自动化测试 | Appinum 介绍及环境安装 中介绍了appium支持WebView测试,本文将分享Android 混合页面的测试方法。

WebView测试环境准备

手机端

  • 被测浏览器:

    iOS:Safari

    Android:Chrome,Chromium,Browser (自带浏览器)

PC端

查看手机浏览器版本

1
2
3
4
adb shell pm list package | grep webview
adb shell pm dump com.android.browser | grep version
adb shell pm dump com.android.chrome | grep version
adb shell pm dump com.android.webview | grep version

查看手机browser和chrome版本

1
2
3
4
5
6
7
8
9
10
11
12
C:\Users\10287>adb shell pm list packages|findstr browser
package:com.android.browser

C:\Users\10287>adb shell pm dump com.android.browser | findstr version
      versionCode=22 targetSdk=22
      versionName=5.1.1-500200323

C:\Users\10287>adb shell pm dump com.android.chrome | findstr version
      versionCode=398713200 targetSdk=29
      versionName=80.0.3987.132
            enabled=true targetSdkVersion=29 versionCode=398713200

查看手机webview版本

在手机上设置中查看 Android System WebView应用版本

img

客户端代码

  • desirecapability

    • “chromedriverExecutable” = “指定driver地址”
    • “browser” = “Browser” 或者“browser” = ”Chrome“

WebView元素定位

1、连接手机/模拟器

img

手机打开google浏览器,并进入百度网页:https://m.baidu.com

2、Chrome浏览器输入地址: chrome://inspect

可以看到电脑连接的设备名以及打开的手机浏览器

img

点击inspect

img

这样就可以定位到浏览器元素。

Android混合页面测试

文档:https://developers.google.com/web/tools/chrome-devtools/remote-debugging/webviews?hl=zh-cn

测试步骤:

  1. 打开ApiDemos
  2. 进入WebView页面
  3. 点击”i am a link”
  4. 退出应用

img

下载ApiDemos-debug.apk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from appium import webdriver
from appium.webdriver.common.mobileby import MobileBy

class TestBrowser():
def setup(self):
desired_caps = {
'platformName': 'android',
'platformVersion': '10',
'appPackage': 'io.appium.android.apis',
'appActivity': 'io.appium.android.apis.ApiDemos',
'deviceName': 'CUYDU19626004019',
'noReset': 'true',
'chromedriverExecutable': 'D:/testing_tools/chromedriver85/chromedriver.exe'
}
self.driver = webdriver.Remote('http://127.0.0.1:4723/wd/hub', desired_caps)
self.driver.implicitly_wait(5)

def teardown(self):
self.driver.quit()

def test_webview(self):
self.driver.find_element_by_accessibility_id("Views").click()
webview ="WebView"
print(self.driver.contexts)
self.driver.find_element_by_android_uiautomator('new UiScrollable(new UiSelector().'
'scrollable(true).instance(0)).'
f'scrollIntoView(new UiSelector().text("{webview}")'
'.instance(0));').click()

print(self.driver.contexts)
self.driver.switch_to.context(self.driver.contexts[1])
print(self.driver.current_context)
self.driver.find_element(MobileBy.ID, 'i am a link').click()
--THE END--

本文标题:App自动化测试 | Android WebView测试

文章作者:hiyo

文章链接:https://hiyongz.github.io/posts/appium-android-webview/

许可协议:本博客文章除特别声明外,均采用CC BY-NC-ND 4.0 许可协议。转载请保留原文链接及作者。

关注微信公众号,及时接收最新技术文章!