1.打开微信x5调试页面
-
手机通过usb链接到电脑,打开usb调试模式,通过adb devices命令检测到设备
- 微信--发现--搜一搜,所搜小程序名字,进入到主界面,严格按照这个路径来
-
然后打开uc-devtools工具,就可以识别页面,注意chromedriver这里是(57.0.2987.132)
- 默认appium-desktop安装之后里面自带的chromedriver不是2.26,需要手动去官网下载对应版本,将其放到appium的chromedriver对应目录中,我的是C:\Users\mz\AppData\Local\appium-desktop\app-1.10.0\resources\app\node_modules\appium\node_modules\appium-chromedriver下
-
微信/qq有很多的进程,我们要确定当前web页面是位于哪个进程中
from appium import webdriver
from appium.webdriver.common.mobileby import MobileBy #appium特有的定位
from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
import time,os
#启动appium时,需要指定chromedriver.exe的目录。使用appium默认目录下的会报错
#在切换小程序webview时,会去匹配chrome的39的驱动,在切换完成之后,在打印所有的窗口句柄
#所以指定一个非默认目录下的chromedriver.exe(x5内核对应的版本),该问题就不会出现
#在appium_server上设置chromedriver的路径D:\ChromeDrivers\chromedriver.exe
desired_caps = {}
#支持x5内核应用自动化设置
desired_caps["recreateChromeDriverSessions"] = True
#平台类型
desired_caps["platformName"] = "Android"
#平台版本号
desired_caps["platfromVersion"] = "5"
#设备名称
desired_caps["deviceName"] = "Android Emulator"
#app包名
desired_caps["appPackage"] = "com.tencent.mm"
#app入口acitivity
desired_caps["appActivity"] = "com.tencent.mm.ui.LauncherUI"
desired_caps["noReset"] = True
#ChromeOptions使用来定制启动选项,因为在appium中切换context识别webview的时候,
#把com.tencent.mm:toolsmp(命令行获取到,博客上有截图)的webview识别成com.tencent.mm的webview
#为了避免这个问题,加上androidProcess:com.tencent.mm:toolsmp
#options = wb.ChromeOptions()
#options.add_experimental_option("androidProcess":"com.tencent.mm:toolsmp"),安卓进程
desired_caps["chromeOptions"] = {"androidProcess":"com.tencent.mm:toolsmp"}
desired_caps["browserName"] = ""
driver = webdriver.Remote("http://127.0.0.1:4723/wd/hub",desired_caps)
time.sleep(5)
#点击发现
driver.find_element_by_android_uiautomator("new UiSelector().text('发现')").click()
#点击发现里面的搜一搜
driver.find_element_by_android_uiautomator("new UiSelector().text('搜一搜')").click()
#等待搜索框出现
WebDriverWait(driver,20).until(EC.visibility_of_element_located((MobileBy.ID,"com.tencent.mm:id/jd")))
#点击搜索框
driver.find_element_by_id("com.tencent.mm:id/jd").click()
time.sleep(5)
#点击历史记录中的软件测试(采用adb命令坐标点击的方式)
os.system("adb shell input tap 281 205")
time.sleep(5)
#点击软件测试小程序
os.system("adb shell input tap 364 470")
#等待小程序加载完成
time.sleep(10)
#获取所有上下文
cons = driver.contexts
print("当前所有上下文",cons)
#切换到小程序webview
driver.switch_to.context("WEBVIEW_com.tencent.mm:toolsmp")
#打印当前素有的窗口
hs = driver.window_handles
print("当前所有的窗口为:",hs)
#需要找到哪一个窗口有柠檬班信息的窗口,然后再其下找元素操作
#遍历所有的handles,找到当前页面所在的handle,如果pageSource有包含想要的元素,就是要找到的handle
#小程序的页面来回切换也需要,遍历所有的handles,切换到元素所在handle
for handle in hs:
driver.switch_to.window(handle)
print("切换到窗口",handle)
if driver.page_source.find("柠檬班") != -1:
break