因爲騰訊系QQ、微信等都是基於騰訊自研X5內核,不是google原生webview,須要打開TBS內核Inspector調試功能才能用Chrome瀏覽器查看頁面元素,並實現Appium自動化測試微信小程序和微信公衆號。html
前提條件Appium環境搭建,這裏很少說了,可查閱Appium環境搭建文章。node
因夜神等模擬器是intel的X86架構,不少app安裝不了,好比微信、qq等(雖說能夠經過安裝arm解釋器來解決該問題,可是進行X5內核調試的話也會出現問題),建議最好是一臺真實的手機來作。python
webview的版本號能夠用chrome瀏覽器查看到,因爲微信用的是x5內核,跟其餘app不太同樣,這裏須要先開啓微信的debug模式。android
備註:手機端和PC端安裝chrome瀏覽器(注意版本最好對應一致,不然會報錯!),chrome瀏覽器驅動下載:請點擊下載web
把下載的驅動文件放在appium安裝目錄下的chromedriver對應目錄中,好比個人本機目錄位置:C:\Users\Administrator\AppData\node_modules\appium\node_modules\appium-chromedriver\chromedriver,能夠雙擊驅動文件就能顯示版本號。chrome
一、開啓微信debug模式:在微信聊天界面輸入:debugx5.qq.com,勾選"打開TBS內核Inspector調試功能。小程序
二、查看微信裏面webview版本,直接在電腦chrome瀏覽器輸入:chrome://inspect/#devices
再打開微信的公衆號頁面,刷新瀏覽器頁面,就會出現webview版本號57.0微信小程序
三、appium1.7之後的版本支持Uiautomator2,最好加上這個,用Uiautomator2執行,而且加上這個參數ChromeOptions,如:'chromeOptions': {'androidProcess': 'com.tencent.mm:toolsmp'}api
微信/qq有不少的進程,查看當前web頁面是哪一個進程中,查找方法:瀏覽器
測試腳本實例:
1 #!/usr/bin/env python 2 # _*_ coding:utf-8 _*_ 3 __author__ = 'Yin' 4 5 6 from appium import webdriver 7 import time 8 9 desired_caps = { 10 'platformName': 'Android', 11 'platformVersion': '6.0', 12 'deviceName': 'BDW123742350', 13 'appPackage': 'com.tencent.mm', 14 'appActivity': '.ui.LauncherUI', 15 'automationName': 'Uiautomator2', 16 'unicodeKeyboard': True, 17 'resetKeyboard': True, 18 'noReset': True, 19 'chromeOptions': {'androidProcess': 'com.tencent.mm:toolsmp'} 20 } 21 22 driver = webdriver.Remote('http://127.0.0.1:4723/wd/hub',desired_caps) 23 driver.implicitly_wait(10) 24 25 # 進入微信首頁搜索按鈕 26 driver.find_element_by_accessibility_id("搜索"),click() 27 28 #錄入內容 29 time.sleep(3) 30 driver.find_element_by_id('com.tencent.mm:id/hx').send_keys("噠噠英語") 31 32 #點開公衆號 33 time.sleep(3) 34 driver.find_element_by_id('com.tencent.mm:id/l8').click() 35 36 #切換webview 37 time.sleep(2) 38 driver.switch_to.context('WEBVIEW_com.tencent.mm:toolsmp') 39 driver.quit()
微信小程序跟公衆號環境同樣,實現方法及定位元素也同樣。
代碼實例:
1 #!/usr/bin/env python 2 # _*_ coding:utf-8 _*_ 3 __author__ = 'Yin' 4 5 6 from appium import webdriver 7 import time 8 9 desired_caps = { 10 'platformName': 'Android', 11 'platformVersion': '6.0', 12 'deviceName': 'BDW123742350', 13 'appPackage': 'com.tencent.mm', 14 'appActivity': '.ui.LauncherUI', 15 'automationName': 'Uiautomator2', 16 'unicodeKeyboard': True, 17 'resetKeyboard': True, 18 'noReset': True, 19 'chromeOptions': {'androidProcess': 'com.tencent.mm:toolsn2'} 20 } 21 22 driver = webdriver.Remote('http://127.0.0.1:4723/wd/hub',desired_caps) 23 driver.implicitly_wait(10) 24 25 # 進入發現菜單 26 driver.find_element_by_id("發現"),click() 27 time.sleep(2) 28 # 點開小程序 29 driver.find_element_by_id("小程序"),click() 30 time.sleep(2) 31 # 選擇小程序天虹 32 driver.find_element_by_id("天虹"),click() 33 time.sleep(2) 34 # 切換webview 35 driver.switch_to.context('WEBVIEW_com.tencent.mm:toolsn2') 36 time.sleep(5)
總之,微信小程序、公衆號,web端app,實際上跟web定位元素測試方法同樣,只要環境搭建好,定位元素方法及selenium都是舉一反三的。