Appium+Python+pytest自动化测试框架的实战

本文主要介绍了Appium+Python+pytest自动化测试框架的实战,文中通过示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

先简单介绍一下目录,再贴一些代码,代码里有注释

Basic目录下写的是一些公共的方法,Data目录下写的是测试数据,image存的是测试失败截图,Log日志文件,Page测试的定位元素,report测试报告,Test测试用例,pytest.ini是pytest启动配置文件,requirements.txt需要安装的py模块,run.py运行文件

在这里插入图片描述
Basic/base.py

里面封装了 一些方法,元素的点击,输入,查找,还有一些自己需要的公共方法也封装在里面,如果你们有别的需要可以自己封装调用

# coding=utf-8
import random
import allure
import pymysql
import time
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from Basic import Log
import oslog = Log.MyLog()class Base(object):def __init__(self, driver):self.driver = driver# 自定义一个元素查找方法def find_element(self, feature,timeout=5, poll=1.0):# feature = By.XPATH,"//*[@text='显示']""""依据用户传入的元素信息特征,然后返回当前用户想要查找元素:param feature: 元组类型,包含用户希望的查找方式,及该方式对应的值:return: 返回当前用户查找的元素"""by = feature[0]value = feature[1]wait = WebDriverWait(self.driver, timeout, poll)if by == By.XPATH:# print( "说明了用户想要使用 xpath 路径的方式来获取元素" )value = self.make_xpath(value)return wait.until(lambda x: x.find_element(by,value))def find_elements(self, feature):wait = WebDriverWait(self.driver, 5, 1)return wait.until(lambda x: x.find_elements(feature[0], feature[1]))def click_element(self, loc):'''封装点击操作函数'''self.find_element(loc).click()def input_text(self, loc, text):'''封装输入操作函数'''self.fm = self.find_element(loc)self.fm.clear()  # 需要先清空输入框,防止有默认内容self.fm.send_keys(text)# 自定义了一个可以自动帮我们拼接 xpath 路径的工具函数def make_xpath(self, feature):start_path = "//*["end_path = "]"res_path = ""if isinstance(feature, str):# 如果是字符串 我们不能直接上来就拆我们可以判断一下它是否是默认正确的 xpath 写法if feature.startswith("//*["):return feature# 如果用户输入的是字符串,那么我们就拆成列表再次进行判断split_list = feature.split(",")if len(split_list) == 2:# //*[contains(@text,'设')]res_path = "%scontains(@%s,'%s')%s" % (start_path, split_list[0], split_list[1], end_path)elif len(split_list) == 3:# //[@text='设置']res_path = "%s@%s='%s'%s" % (start_path, split_list[0], split_list[1], end_path)else:print("请按规则使用")elif isinstance(feature, tuple):for item in feature:# 默认用户在元组当中定义的数据都是字符串split_list2 = item.split(',')if len(split_list2) == 2:res_path += "contains(@%s,'%s') and " % (split_list2[0], split_list2[1])elif len(split_list2) == 3:res_path += "@%s='%s' and " % (split_list2[0], split_list2[1])else:print("请按规则使用")andIndex = res_path.rfind(" and")res_path = res_path[0:andIndex]res_path = start_path + res_path + end_pathelse:print("请按规则使用")return res_pathdef assert_ele_in(self, text, element):'''封装断言操作函数'''try:assert text in self.find_element(element).textassert 0except Exception:assert 1def get_assert_text(self, element):ele = self.find_element(element, timeout=5, poll=0.1)return ele.text# 自定义一个获取 toast内容的方法def get_toast_content(self, message):tmp_feature = By.XPATH, "//*[contains(@text,'%s')]" % messageele = self.find_element(tmp_feature)return ele.text# 自定义一个工具函数,可以接收用户传递的部分 toast 信息,然后返回一个布尔值,来告诉# 用户,目标 toast 到底是否存在def is_toast_exist(self, mes):# 拿着用户传过来的 message 去判断一下包含该内容的 toast 到底是否存在。try:self.get_toast_content(mes)return Trueexcept Exception:# 如果目标 toast 不存在那么就说明我们的实际结果和预期结果不一样# 因此我们想要的是断言失败return Falsedef get_mysql(self,  table, value):'''连接数据库'''# 打开数据库连接db = pymysql.connect(host='', port=, db=, user='', passwd='', charset='utf8')# 使用 cursor() 方法创建一个游标对象 cursorcursor = db.cursor()try:# 使用 execute()  方法执行 SQL 查询cursor.execute(value)db.commit()except Exception as e:print(e)db.rollback()# 使用 fetchone() 方法获取单条数据.data = cursor.fetchone()# 关闭数据库连接db.close()return datadef get_xpath(self, value):'''封装获取xpath方法'''text = By.XPATH, '//*[@text="%s"]' % valuereturn text# 自定义一个获取当前设备尺寸的功能def get_device_size(self):x = self.driver.get_window_size()["width"]y = self.driver.get_window_size()["height"]return x, y# 自定义一个功能,可以实现向左滑屏操作。def swipe_left(self):start_x = self.get_device_size()[0] * 0.9start_y = self.get_device_size()[1] * 0.5end_x = self.get_device_size()[0] * 0.4end_y = self.get_device_size()[1] * 0.5self.driver.swipe(start_x, start_y, end_x, end_y)# 自定义一个功能,可以实现向上滑屏操作。def swipe_up(self):start_x = self.get_device_size()[0] * 1/2start_y = self.get_device_size()[1] * 1/2end_x = self.get_device_size()[0] * 1/2end_y = self.get_device_size()[1] * 1/7self.driver.swipe(start_x, start_y, end_x, end_y, 500)# 切换到微信def switch_weixxin(self):self.driver.start_activity("com.tencent.mm", ".ui.LauncherUI")# 切换到医生端def switch_doctor(self):self.driver.start_activity("com.rjjk_doctor", ".MainActivity")# 切换到销售端def switch_sale(self):self.driver.start_activity("com.rjjk_sales", ".MainActivity")def switch_webview(self):# 切换到webviewprint(self.driver.contexts)time.sleep(5)self.driver.switch_to.context("WEBVIEW_com.tencent.mm:tools")print("切换成功")time.sleep(3)# 自定义根据坐标定位def taptest(self, a, b):# 设定系数,控件在当前手机的坐标位置除以当前手机的最大坐标就是相对的系数了# 获取当前手机屏幕大小X,YX = self.driver.get_window_size()['width']Y = self.driver.get_window_size()['height']# 屏幕坐标乘以系数即为用户要点击位置的具体坐标self.driver.tap([(a * X, b * Y)])# 自定义截图函数def take_screenShot(self):'''测试失败截图,并把截图展示到allure报告中'''tm = time.strftime("%Y-%m-%d-%H-%M-%S", time.localtime(time.time()))self.driver.get_screenshot_as_file(os.getcwd() + os.sep + "image/%s.png" % tm)allure.attach.file(os.getcwd() + os.sep + "image/%s.png" %tm, attachment_type=allure.attachment_type.PNG)# 自定义随机生成11位手机号def create_phone(self):# 第二位数字second = [3, 4, 5, 7, 8][random.randint(0, 4)]# 第三位数字third = {3: random.randint(0, 9),4: [5, 7, 9][random.randint(0, 2)],5: [i for i in range(10) if i != 4][random.randint(0, 8)],7: [i for i in range(10) if i not in [4, 9]][random.randint(0, 7)],8: random.randint(0, 9),}[second]# 最后八位数字suffix = random.randint(9999999, 100000000)# 拼接手机号return "1{}{}{}".format(second, third, suffix)

Basic/deiver.py
APP启动的前置条件,一个是普通的app,一个是微信公众号,配置微信公众号自动化测试和一般的APP是有点区别的,微信需要切换webview才能定位到公众号

from appium import webdriverdef init_driver():desired_caps = {}# 手机 系统信息desired_caps['platformName'] = 'Android'desired_caps['platformVersion'] = '9'# 设备号desired_caps['deviceName'] = 'emulator-5554'# 包名desired_caps['appPackage'] = ''# 启动名desired_caps['appActivity'] = ''desired_caps['automationName'] = 'Uiautomator2'# 允许输入中文desired_caps['unicodeKeyboard'] = Truedesired_caps['resetKeyboard'] = Truedesired_caps['autoGrantPermissions'] = Truedesired_caps['noReset'] = False# 手机驱动对象driver = webdriver.Remote("http://127.0.0.1:4723/wd/hub", desired_caps)return driverdef driver_weixin():desired_caps = {}# 手机 系统信息desired_caps['platformName'] = 'Android'desired_caps['platformVersion'] = '9'# 设备号desired_caps['deviceName'] = ''# 包名desired_caps['appPackage'] = 'com.tencent.mm'# 启动名desired_caps['appActivity'] = '.ui.LauncherUI'# desired_caps['automationName'] = 'Uiautomator2'# 允许输入中文desired_caps['unicodeKeyboard'] = Truedesired_caps['resetKeyboard'] = Truedesired_caps['noReset'] = True# desired_caps["newCommandTimeout"] = 30# desired_caps['fullReset'] = 'false'# desired_caps['newCommandTimeout'] = 10# desired_caps['recreateChromeDriverSessions'] = Truedesired_caps['chromeOptions'] = {'androidProcess': 'com.tencent.mm:tools'}# 手机驱动对象driver = webdriver.Remote("http://127.0.0.1:4723/wd/hub", desired_caps)return driver

Basic/get_data.py

这是获取测试数据的方法

import os
import yamldef getData(funcname, file):PATH = os.getcwd() + os.sepwith open(PATH + 'Data/' + file + '.yaml', 'r', encoding="utf8") as f:data = yaml.load(f, Loader=yaml.FullLoader)# 1 先将我们获取到的所有数据都存放在一个变量当中tmpdata = data[funcname]# 2 所以此时我们需要使用循环走进它的内心。res_arr = list()for value in tmpdata.values():tmp_arr = list()for j in value.values():tmp_arr.append(j)res_arr.append(tmp_arr)return res_arr

Basic/Log.py

日志文件,不多介绍

# -*- coding: utf-8 -*-"""
封装log方法"""import logging
import os
import timeLEVELS = {'debug': logging.DEBUG,'info': logging.INFO,'warning': logging.WARNING,'error': logging.ERROR,'critical': logging.CRITICAL
}logger = logging.getLogger()
level = 'default'def create_file(filename):path = filename[0:filename.rfind('/')]if not os.path.isdir(path):os.makedirs(path)if not os.path.isfile(filename):fd = open(filename, mode='w', encoding='utf-8')fd.close()else:passdef set_handler(levels):if levels == 'error':logger.addHandler(MyLog.err_handler)logger.addHandler(MyLog.handler)def remove_handler(levels):if levels == 'error':logger.removeHandler(MyLog.err_handler)logger.removeHandler(MyLog.handler)def get_current_time():return time.strftime(MyLog.date, time.localtime(time.time()))class MyLog:path = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))log_file = path+'/Log/log.log'err_file = path+'/Log/err.log'logger.setLevel(LEVELS.get(level, logging.NOTSET))create_file(log_file)create_file(err_file)date = '%Y-%m-%d %H:%M:%S'handler = logging.FileHandler(log_file, encoding='utf-8')err_handler = logging.FileHandler(err_file, encoding='utf-8')@staticmethoddef debug(log_meg):set_handler('debug')logger.debug("[DEBUG " + get_current_time() + "]" + log_meg)remove_handler('debug')@staticmethoddef info(log_meg):set_handler('info')logger.info("[INFO " + get_current_time() + "]" + log_meg)remove_handler('info')@staticmethoddef warning(log_meg):set_handler('warning')logger.warning("[WARNING " + get_current_time() + "]" + log_meg)remove_handler('warning')@staticmethoddef error(log_meg):set_handler('error')logger.error("[ERROR " + get_current_time() + "]" + log_meg)remove_handler('error')@staticmethoddef critical(log_meg):set_handler('critical')logger.error("[CRITICAL " + get_current_time() + "]" + log_meg)remove_handler('critical')if __name__ == "__main__":MyLog.debug("This is debug message")MyLog.info("This is info message")MyLog.warning("This is warning message")MyLog.error("This is error")MyLog.critical("This is critical message")

Basic/Shell.py

执行shell语句方法

# -*- coding: utf-8 -*-
# @Time    : 2018/8/1 下午2:54
# @Author  : WangJuan
# @File    : Shell.py"""
封装执行shell语句方法"""import subprocessclass Shell:@staticmethoddef invoke(cmd):output, errors = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()o = output.decode("utf-8")return o

Page/page.py

class Page:def __init__(self, driver):self.driver = driver@propertydef initloginpage(self):return Login_Page(self.driver)

Test/test_login.py

登陆的测试用,我贴一条使用数据文件的用例

class Test_login:@pytest.mark.parametrize("args", getData("test_login_error", 'data_error_login'))def test_error_login(self, args):"""错误登陆"""self.page.initloginpage.input_user(args[0])self.page.initloginpage.input_pwd(args[1])self.page.initloginpage.click_login()toast_status = self.page.initloginpage.is_toast_exist(args[2])if toast_status == False:self.page.initpatientpage.take_screenShot()assert False

pytest.ini

pytest配置文件,注释的是启动失败重试3次,因为appium会因为一些不可控的原因失败,所有正式运行脚本的时候需要加上这个

[pytest]
;addopts = -s --html=report/report.html --reruns 3
addopts = -s --html=report/report.html
testpaths = ./Test
python_files = test_*.py
python_classes = Test*
python_functions = test_add_prescription_listrequirements.txt
框架中需要的患教,直接pip install -r requirements.txt 安装就可以了,可能会失败,多试几次```python
adbutils==0.3.4
allure-pytest==2.7.0
allure-python-commons==2.7.0
Appium-Python-Client==0.46
atomicwrites==1.3.0
attrs==19.1.0
certifi==2019.6.16
chardet==3.0.4
colorama==0.4.1
coverage==4.5.3
decorator==4.4.0
deprecation==2.0.6
docopt==0.6.2
enum34==1.1.6
facebook-wda==0.3.4
fire==0.1.3
humanize==0.5.1
idna==2.8
importlib-metadata==0.18
logzero==1.5.0
lxml==4.3.4
more-itertools==7.1.0
namedlist==1.7
packaging==19.0
Pillow==6.1.0
pluggy==0.12.0
progress==1.5
py==1.8.0
PyMySQL==0.9.3
pyparsing==2.4.0
pytest==5.0.0
pytest-cov==2.7.1
pytest-html==1.21.1
pytest-metadata==1.8.0
pytest-repeat==0.8.0
pytest-rerunfailures==7.0
PyYAML==5.1.1
requests==2.22.0
retry==0.9.2
selenium==3.141.0
six==1.12.0
tornado==6.0.3
uiautomator2==0.3.3
urllib3==1.25.3
wcwidth==0.1.7
weditor==0.2.3
whichcraft==0.6.0
zipp==0.5.1

到此这篇关于Appium+Python+pytest自动化测试框架的实战的文章就介绍到这了

最后感谢每一个认真阅读我文章的人,礼尚往来总是要有的,虽然不是什么很值钱的东西,如果你用得到的话可以直接拿走:

这些资料,对于【软件测试】的朋友来说应该是最全面最完整的备战仓库,这个仓库也陪伴上万个测试工程师们走过最艰难的路程,希望也能帮助到你!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/216846.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

PHP 针对mysql 自动生成数据字典

PHP 针对mysql 自动生成数据字典 确保php 可以正常使用mysqli 扩展 这里还需要注意 数据库密码 如果密码中有特殊字符 如: 首先,我们需要了解MySQL中的特殊字符包括哪些。MySQL中的特殊字符主要包括以下几类: 1. 单引号(&a…

css实现图片绕中心旋转,鼠标悬浮按钮炫酷展示

vue模板中代码 <div class"contentBox clearfix home"><div class"circle"><img class"in-circle" src"../../assets/img/in-circle.png" alt""><img class"out-circle" src"../../as…

PCB板材有哪些分类

1、按板材的刚柔程度分为刚性覆铜箔板和挠性覆铜箔板两大类。 2、按增强材料不同&#xff0c;分为&#xff1a;纸基、玻璃布基、复合基&#xff08;CEM系列等&#xff09;和特殊材料基&#xff08;陶瓷、金属基等&#xff09;四大类。 (一)纸基板 酚醛纸基板&#xff08;俗称…

企业计算机服务器中了360勒索病毒怎么办,360勒索病毒解密文件恢复

计算机技术的不断发展&#xff0c;为企业的生产运营提供了极大便利&#xff0c;不仅提升了办公效率&#xff0c;还促进了企业的发展。企业计算机在日常工作中一定加以防护&#xff0c;减少网络威胁事件的产生&#xff0c;确保企业的生产生产运营。最近&#xff0c;网络上的360后…

基于C#实现双端队列

话说有很多数据结构都在玩组合拳&#xff0c;比如说&#xff1a;块状链表&#xff0c;块状数组&#xff0c;当然还有本篇的双端队列&#xff0c;是的&#xff0c;它就是栈和队列的组合体。 一、概念 我们知道普通队列是限制级的一端进&#xff0c;另一端出的 FIFO 形式&#…

医保线上购药系统:代码驱动的医疗创新

医保线上购药系统&#xff0c;这是一个融合技术和医疗的创新典范。本文将通过简单的技术代码示例&#xff0c;为您揭示这一系统是如何通过技术驱动医疗创新&#xff0c;为用户提供更智能、便捷的健康管理体验的。 1. 前端界面开发 使用React框架&#xff0c;我们可以轻松构建…

IIC驱动OLED(SSD1306) HAL库+CubeMX

一.IIC传输数据的格式 1.写操作 2.读操作 3.IIC信号 二. IIC底层驱动 1.重新初始化配置延时单元 //软件延时 void I2C_Delay(uint32_t t) {volatile uint32_t tmp t;while(tmp--); }void I2C_GPIO_ReInit(void) {/* 1. 使用结构体定义硬件GPIO对象 */GPIO_InitTypeDef GPIO…

YB4556 28V、1A、单节、线性锂电池充电IC

YB4556 28V 、 1A 、单节、线性锂电池充电 IC 概述: YB4556H 是一款完整的采用恒定电流 / 恒定电压的高压、大电流、单节锂离子电池线性充电 IC。最高耐压可达 28V&#xff0c;6.5V 自动过压保护&#xff0c;充电电流可达 1A。由于采用了内部 PMOSFET 架构&#xff0c;加上防倒…

荆涛《春节回家》:歌声中的年味与乡愁

荆涛《春节回家》&#xff1a;歌声中的年味与乡愁春节&#xff0c;对于每一个中国人来说&#xff0c;都是一年中最为重要的时刻。它不仅仅是一个节日&#xff0c;更是团圆、乡愁、回忆与希望的象征。歌手荆涛的歌曲《春节回家》恰恰捕捉到了这些情感&#xff0c;用音乐为人们绘…

十大排序算法中的插入排序和希尔排序

文章目录 &#x1f412;个人主页&#x1f3c5;算法思维框架&#x1f4d6;前言&#xff1a; &#x1f380;插入排序 时间复杂度O(n^2)&#x1f387;1. 算法步骤思想&#x1f387;2.动画实现&#x1f387; 3.代码实现 &#x1f380;希尔排序 时间复杂度O(n*logn~n^2)希尔排序的设…

ruoyi-plus-vue docker 部署

本文以 ruoyi-vue-plus 5.x docker 部署为基础 安装虚拟机 部署文档 安装docker 安装docker 安装docker-compose 配置idea环境 上传 /doicker 文件夹 到服务器&#xff1b;赋值 777权限 chmod -R 777 /docker idea构建 jar 包 利用 idea 构建镜像; 创建基础服务 docker…

Vatee万腾的科技探险:vatee数字化力量的前瞻征途

在Vatee万腾的科技探险中&#xff0c;我们领略到了一场数字化力量的前瞻征途&#xff0c;这是一次引领未来的创新之旅。Vatee万腾以其独特的科技理念和数字化力量&#xff0c;开启了一次引领行业的前瞻性征途&#xff0c;为数字化未来描绘出了崭新的篇章。 Vatee万腾的数字化力…