Python+Airtest在实际测试场景中的应用

实际测试应用时,测试场景特别多,直接写在脚本中会特别乱,所以我们采用每个测试用例写在一个方法里,然后直接执行,注意点如下:
1.每一个case写在一个方法里,最后直接调用;
2.必须用try except进行错误处理,否则一旦断言失败就会一直循环到抛出错误而且出错case后面的所有case都无法执行;
3.每个方法上方要注释case内容,方便以后维护;
4.链接跳转需要时间反应,可在执行某一操作后,使用sleep()等待几秒,否则页面还没显示就直接进行下一操作会导致脚本报错;
5.可以单独选中某一部分,鼠标右键,点击只运行选中代码进行调试.
6.case执行过程中如果有页面一直没有响应,使用adb get-state获取设备状态,如果中断需要使用adb connect ip:port重新连接


具体脚本如下:

# -*- encoding=utf8 -*-
__author__ = "bigdog"

from airtest.core.api import *

auto_setup(__file__) 

from poco.drivers.android.uiautomation import AndroidUiautomationPoco
poco = AndroidUiautomationPoco(use_airtest_input=True, screenshot_each_action=False)

#测试登录云之家是否成功
def case1(phone):
    try:
        phone = str(phone)
        poco(text="云之家").click()
        sleep(3.0)
        poco("com.kdweibo.client:id/password").click()
        text("123456")
        poco("com.kdweibo.client:id/btn_login").click()
        assert_exists(Template(r"tpl1565442382395.png", record_pos=(-0.374, -0.216), resolution=(1080, 1920)), "登录云之家成功")
        
    except Exception as e:
        print("登录云之家失败!")
        
#测试退出云之家是否成功
def case2():
    try:
        touch(Template(r"tpl1565451602515.png", record_pos=(-0.41, -0.745), resolution=(1080, 1920)))
           

        touch(Template(r"tpl1565443930299.png", threshold=0.4, record_pos=(0.243, -0.744), resolution=(1080, 1920)))
        touch(Template(r"tpl1565443957885.png", record_pos=(0.008, 0.306), resolution=(1080, 1920)))
        assert_exists(Template(r"tpl1565443982452.png", record_pos=(-0.306, -0.197), resolution=(1080, 1920)), "退出登录成功")
    except Exception as e:
        print("退出登录失败")


#测试返回主页是否成功
def case3():
    try:
        keyevent("HOME")
        assert_exists(Template(r"tpl1565444200648.png", record_pos=(-0.12, 0.191), resolution=(1080, 1920)), "返回主页成功")

    except Exception as e:
        print("返回主页失败")
        
#天下游打开是否正常        
def case4():
    try:
        poco(text="天下游").click()
        assert_exists(Template(r"tpl1565451011067.png", record_pos=(-0.394, 0.671), resolution=(1080, 1920)), "请填写测试点")
    except Exception as e:
        print("打开天下游失败!")
    
  

#case执行
case1(13112345678)
case2()
case3()
case4()

测试执行成功后,就会生成测试报告,如下:


测试报告.png

)

你可能感兴趣的:(Python+Airtest在实际测试场景中的应用)