appium 处理webview

风流不在谈锋胜,袖手无言味最长。这篇文章主要讲述appium 处理webview相关的知识,希望能为你提供帮助。
简介WebView是android中一个非常重要的控件,它的作用是用来展示一个web页面。它使用的内核是webkit引擎,4.4版本之后,直接使用Chrome作为内置网页浏览器。
简单来说wenview就是我们常说的H5页面,它可以想web页面那样利用webdriver进行定位
关于Webview

  • 是android系统提供能显示页面的系统控件(特殊的view)
  • < android4.4 webview底层实现webkit内部
  • > =android4.4 采用chromium作为webview底层支持,支持html5,css3,js
  • webaudio:图形化的界面收听音频
  • webGL:页面3d效果的渲染
  • webRTC:直播等等,美颜
纯webview测试(只测试浏览器)的环境准备
  • 手机端
    • 被测浏览器:(不可以是第三方浏览器)safari for ios and chrome,chromium,or browser for Android
  • PC端
    • 安装chrome浏览器或者chromium
    • 下载对应手机浏览器对应的driver
  • 客户端代码:
    • desire_cap
      • “browserName”:“Browser” 或者 “browserName”:“Chrome” 这个是指定的浏览器
      • “chromedriverExecutable”:r"c:\\chrome\\chromedriver.exe" 这个是指定的chromedriver的路径
  • 如何查找app的版本:adb shell pm dump com.android.browser | findstr version
很多APP中的页面都是webview页面,
如何判断页面是不是webview
  • 断网查看,如果断网显示网页加载不了就是webview
  • 看加载条,有加载条通常是webview
  • 看顶部是否有关闭按钮
  • 下拉刷新,页面有刷新就是webview
  • 下拉刷新的时候是否有网页提供者
  • 用工具查看,如果元素显示webview,则是webview
 
很多APP都是native与webview混合的,比如在native页面点击一个按钮后就跳到了webview页面,这样我们在webview页面用native页面的元素定位方式会发现无法定位的现象,那么在混合页面如何进行测试呢
混合webview测试条件
  • PC:
    • 能够访问google
    • 下载对应版本的chromedriver
  • 手机端:应用代码需要打开webview的开关
  • 代码中要添加chromedriverExecutable
  • 有一些webview可以被uiautomatorview查找到,但都不推荐,可能会出现兼容性的问题,比如text的显示字符串会不一样
  • 如何查找当前webview的网页
    • adb shell
    • logcat | grep http
    • 就能找到访问的http了
例: 
打开webview页面 
【appium 处理webview】chrome://inspect/#devices
appium 处理webview

文章图片

 
 
 
appium 处理webview

文章图片

 
  获取webview driver版本
1、
appium 处理webview

文章图片

 
 
 
2、
appium 处理webview

文章图片

 
 
3、
chenshifengdeMacBook-Pro:ChromeDriver chenshifeng$ adb shell pm list package|grep webview package:com.android.webview package:org.chromium.webview_shell chenshifengdeMacBook-Pro:ChromeDriver chenshifeng$ adb shell pm dump com.android.webview|grep version versionCode=373018615 minSdk=21 targetSdk=29 versionName=74.0.3729.186

appium 处理webview

文章图片

  切换native与webview
#!/usr/bin/python # -*- coding: UTF-8 -*- """ @author:chenshifeng @file:test_webview.py @time:2020/11/29 """from appium import webdriverclass TestWebview: def setup(self): desired_caps = { "platformName": "Android", "platformVersion": "8.0", "automationName": "UiAutomator2", "deviceName": "emulator-5554", "appPackage": "com.example.android.apis", "appActivity": "com.example.android.apis.ApiDemos", "chromedriverExecutable": "/Users/chenshifeng/Library/SoftWare/ChromeDriver/chromedriver74", # "appActivity": ".common.MainActivity", "noReset": True,# 不重置APP # "autoGrantPermissions": True, # "skipServerInstallation": True,# 跳过 uiAutomator2服务器安装 # "dontStopAppOnReset": True, # "skipDeviceInitialization": True,# 跳过设备初始化 # "unicodeKeyboard": True,# 默认启用 Unicode 输入 # "resetKeyboard": True,# 与上面合用,可以输入中文 # "newCommandTimeout": 300 } self.driver = webdriver.Remote(\'http://127.0.0.1:4723/wd/hub\', desired_caps) self.driver.implicitly_wait(10)def teardown(self): self.driver.quit()def test_webview(self): self.driver.find_element_by_xpath(\'//*[contains(@text,"Views")]\').click() print(self.driver.contexts)self.driver.find_element_by_android_uiautomator(\'new UiScrollable(new UiSelector().\' \'scrollable(true).instance(0)).\' \'scrollIntoView(new UiSelector().text("WebView").\' \'instance(0)); \').click() # self.driver.find_element_by_xpath(\'//*[contains(@text,"Hello World! - 1")]\').click()# 可以与native页面一样处理,但这种方法由于不同的手机渲染的结果不一样,不具有通用性 print(self.driver.contexts)# 获取上下文 self.driver.switch_to.context(self.driver.contexts[-1]) 进入到webview页面 self.driver.find_element_by_xpath(\'/html/body/a\').click()# print(self.driver.page_source) sleep(5)

执行结果
============================== 1 passed in 32.47s ==============================Process finished with exit code 0 PASSED[100%][\'NATIVE_APP\'] [\'NATIVE_APP\', \'WEBVIEW_com.example.android.apis\']

 

    推荐阅读