3 Star 12 Fork 5

默金/APP自动化测试框架pytest+allure+uiautomator2+pom

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
t_001.py 1.00 KB
一键复制 编辑 原始数据 按行查看 历史
默金 提交于 2022-08-03 15:28 . 1.update
# coding: utf-8
#
import uiautomator2 as u2
from time import sleep
d = u2.connect("6d5b932e")
d2 = u2.connect("emulator-5554")
d.implicitly_wait(120)
name_wx='mojin20220113'
d.app_start('com.tencent.mm',stop=True,wait=True)
while not d.xpath('//*[@resource-id="com.tencent.mm:id/gsl"]/android.widget.ImageView[1]').exists:#搜索
break
d.xpath('//*[@resource-id="com.tencent.mm:id/gsl"]/android.widget.ImageView[1]').click()#点击搜索
d(resourceId="com.tencent.mm:id/cd7").send_keys(name_wx)#输入微信号
d(text='微信号: %s'%name_wx).click()#点击搜索的人员
d(resourceId="com.tencent.mm:id/b3q").click()#点击拉去显示视频通话界面
d(text="视频通话").click()#点击视频通话
d(text="语音通话").click()#选中语音通话
sleep(2)
while not d2(resourceId="com.tencent.mm:id/a3c", description="接听").exists:#搜索
break
d2(resourceId="com.tencent.mm:id/a3c", description="接听").click()#点击挂断
sleep(10)
d2(resourceId="com.tencent.mm:id/a3c").click()#点击挂断
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/HP_mojin/20220728_wx.git
git@gitee.com:HP_mojin/20220728_wx.git
HP_mojin
20220728_wx
APP自动化测试框架pytest+allure+uiautomator2+pom
master

搜索帮助