摘要:
一、Remote start 报错 Connection refused to host:XXX.XXX.XXX.XXX 前提: 1. 本人使用windows+VMware(CentOS 7)。 2. 负载机(虚拟机)网络模式为桥接模式,保证与压力机(Windows)在同一网段,即: 两遍可以互pi 阅读全文
摘要:
好文如下: http://testingpai.com/article/1621591199069 阅读全文
摘要:
概述生成测试报告需要下载allure包 和 allure-pytest 库, 测试报告是通过allure-pytest生成,通过本地的allure包展示测试报告 一、allure 的安装与使用 1.下载allure包下载地址:https://github.com/allure-framework/a 阅读全文
摘要:
背景:测试数据既要在fixture方法中使用,同时也在测试用例中使用 使用方法:在使用parametrize的时候添加"indirect=True"参数。pytest可以实现将参数传到fixture方法中,也可以在当前测试用例中使用。 原理:参数indirect=True时,pytest会把argn 阅读全文
摘要:
一文搞懂fixture 各种骚操作: https://blog.csdn.net/weixin_46745811/article/details/122384070 好文好文! 阅读全文
摘要:
from selenium.webdriver.support.wait import WebDriverWait from selenium.webdriver.support import expected_conditions as EC from appium.webdriver.commo 阅读全文
摘要:
import time from appium.webdriver import Remote """可使用uc浏览器小工具uc-devtools来查看H5混合页面""" caps = { "platformName": "Android", "appPackage": "com.lemon.lem 阅读全文
摘要:
一、基于坐标的点击 1 startx = 792 2 endx = 900 3 starty = 49 4 endy = 137 5 center_x = (startx + starty) / 2 6 center_y = (endx + endy) / 2 7 8 # 基于坐标的点击, 9 # 阅读全文
摘要:
1 import time 2 3 from appium.webdriver import Remote 4 from selenium.webdriver import ActionChains 5 from selenium.webdriver.common.actions.mouse_but 阅读全文
摘要:
1 class BasePage(): 2 def __init__(self, driver): 3 self.driver = driver 4 5 def swipe_left(self): 6 """从右到左滑动""" 7 size = self.driver.get_window_rect 阅读全文