当前位置: 首页 > 工具软件 > FAutoTest > 使用案例 >

fautotest框架测试try

顾俊茂
2023-12-01

fautotest

FAutoTest是腾讯自家开发来做微信H5页面的自动测试框架,既然企鹅能将其开源,说明这个框架应该是经过其内部验证实践的。我们可以从GitHub上找到这个开源项目地址
https://github.com/Tencent/FAutoTest/

准备工作

要按照 https://github.com/Tencent/FAutoTest/ 里面完成安装。

代码分享

#encoding:utf-8
from fastAutoTest.core.h5.h5Engine import H5Driver
from fastAutoTest.utils.adbHelper import AdbHelper
from uiautomator import device as d
import os

#获得设备列表
myAdb =AdbHelper()
myDeviceList = myAdb.listDevices()

if len(myDeviceList) == 0 :
print “Error: we don’t find any device.”
exit(-1)
else :
print “Info: we find device(s) …”
print myDeviceList

#获得我的设备名称,目前只使用一个
myDevice = myDeviceList[0]

#launchWX()
#通过adb命令启动手机微信
os.system(‘adb -s %s shell am start com.tencent.mm/com.tencent.mm.ui.LauncherUI’ %myDevice )
##launchWebView()
#d(text=‘中国电信客服’).click()
#d(text=‘查询’).click()
#d(text=‘套餐余量’).click()
##关闭手机微信
os.system(‘adb -s %s shell am start com.tencent.mm/com.tencent.mm.ui.LauncherUI’ %myDevice )

 类似资料: