微信小程序自动化

前言

最近不少同学都在咨询微信小程序自动化怎么去做,碰巧也看到了思寒老师说的,“按照webview去操作就好了”,于是就想尝试下,搞定后给大家写文章分享 :crazy_face:

废话不多说,直接上代码

class TestDemo:
    def setup(self):
        self.desire_cap= {
            "platformName": "Android",
            "deviceName": "wechat",
            "appPackage": "com.tencent.mm",
            "appActivity": ".ui.LauncherUI",
            "noReset": "true",
            'chromeOptions': {'androidProcess': 'com.tencent.mm:appbrand0'},
        }
        self.driver=webdriver.Remote("http://127.0.0.1:4723/wd/hub",self.desire_cap)
        self.driver.implicitly_wait(10)

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

    def test_demo(self):
        self.driver.find_element_by_xpath("//*[@text='通讯录']")
        size = self.driver.get_window_size()
        width = size.get("width")
        height = size.get("height")
        self.driver.swipe((width / 2), int((height * 0.2)), (width / 2), (height * 0.8), 2000)
        self.driver.find_element_by_xpath("//*[@resource-id='com.tencent.mm:id/gam' and @text='雪球']").click()
        sleep(5)
        print(self.driver.contexts,'第一次打印')
        self.driver.find_element_by_xpath("//*[@content-desc='搜索股票信息/代码']/..").click()
        self.driver.find_element_by_xpath('//*[@text="请输入股票名称/代码"]').send_keys("阿里巴巴")
        text = self.driver.find_element_by_xpath('//*[@content-desc="阿里巴巴"]')
        assert text
  • 模拟器:Genymotion
  • 系统版本:8.1
  • 微信版本:7.0.15
  • 小程序:雪球

步骤

  • 获取小程序进程号(打开小程序)
mac:adb shell dumpsys activity top| grep ACTIVITY
win:adb shell dumpsys activity top| findstr ACTIVITY

  • 获取androidProcess
adb shell ps 9552

定位

请使用 weditor 进行定位
https://github.com/alibaba/web-editor
使用chrome inspect 或者UC开发者工具定位时,解析元素是把页面解析为 html 页面,使用 weditor,则会把页面解析为原生页面,而Appium在操作原素时,也是把页面解析成了原生去操作的(切webview除外)

接下来就可以按照原生的页面去愉快的操作元素啦

解疑

chromeOptions:
Appium官方预留了chromeOptions选项,在capability里可以添加这个参数来自定义配置ChromeDriver 会话的选项


androidProcess:设置webview的进程名字,如果没有设置这个参数,则默认为app的包名

注意事项

不要去切 webview!!!
不要去切 webview!!!
不要去切 webview!!!

参考文档:

http://appium.io/docs/en/writing-running-appium/caps/
https://sites.google.com/a/chromium.org/chromedriver/capabilities
https://sites.google.com/a/chromium.org/chromedriver/getting-started/getting-started---android

微信历史版本下载:

7 个赞

码一下,以后用得着

码一下,以后用得着

码一下,以后用得着

码一下

码一下

请问下老师,self.driver.find_element_by_xpath("//*[@resource-id=‘com.tencent.mm:id/gam’ and @text=‘雪球’]").click()
这里面的元素都是用WEditor 查找的吗?我用这个工具怎么看不到对应的元素

选择雪球这两个字

码一下

码。

码。

麻烦问下,这个是怎么获取到的值啊?
“appActivity”: “.ui.LauncherUI”,

找到了,哈哈,刚才一直想在命令行找到,发现找错方向了

老师,请问下,跑程序时,报这个是为什么啊

发个完整日志看看

麻烦老师
日志.txt (39.9 KB)

我把上面的代码拉下来跑,也会报这个错

微信版本对吗

我用weditor 这个工具,为什么不能定位微信小程序中的元素呀,使用的是mumu模拟器,点击元素,只有坐标

测试webview不要使用mumu浏览器哈