Selenium+pytest+allure踩过的坑
一、多进程运行报错
虽然pytest能设置并发,貌似不能对一次运行中的不同用例设置不同的并发数,所以加入了多进程。这里使用了继承式调用:
from selenium import webdriver
from multiprocessing import Process
import time
import random
class Rundriver(Process):
def __init__(self, url='https://www.baidu.com'):
super().__init__()
self.url = url
self.driver = webdriver.Chrome()
self.driver.implicitly_wait(20)
def run(self):#该方法名固定
self.driver.get(self.url)
self.driver.maximize_window()
time.sleep(random.randrange(5,8))
self.driver.quit()
if __name__ == '__main__':
p1 = Rundriver()
p2 = Rundriver('https://weibo.com/')
p1.start() #start会自动调用run()
p2.start()
while p1.is_alive() | p2.is_alive():
time.sleep(1)
print('运行完毕')
运行报错:
AttributeError: Can't pickle local object '_createenviron.<locals>.encodekey'
原代码:
from multiprocessing import Process
解决方法:
from multiprocessing.dummy import Process
二、Json格式参数传值接口返回400
接口调用返回状态码400,正常应该返回布尔值。
import requests
import json
url = r"http://192.168.1.15:10001/……/……/……"
payload = {"LaneNo":"E2.3"}
data_json = json.dumps(payload, indent=4)
response = requests.post(url=url, json=data_json)
print(response.text)
实际返回:
{"type":"https://tools.ietf.org/html/rfc7231#section-6.5.1","title":"One or more validation errors occurred.","status":400,"traceId":"|8b3324c4-4bda8d6ce91f0941.","errors":{"$":["The JSON value could not be converted to IotItemService.Models.SimulationCarLeaveItem. Path: $ | LineNumber: 0 | BytePositionInLine: 24."]}}
原代码:
data_json = json.dumps(payload, indent=4)
response = requests.post(url=url, json=data_json)
解决办法:
response = requests.post(url=url, json=payload)
三、模块间导入文件报错提示找不着
报错:
ModuleNotFoundError: No module named 'login_submit'
解决办法: 将该文件的上级目录添加至python搜索模块的路径集,这里将以下代码写入与login_submit同级的初始化文件(init.py)中。
import os,sys
dirname = os.path.dirname(os.path.abspath(__file__)) # 获取当前文件所在目录
sys.path.append(dirname) # 将目录dirname添加至python搜索模块的路径集,只在运行时修改,运行结束后失效
四、数据库查询不到结果
获取提交结论的任务的ID连接数据库查询结果为空,但是执行传ID值的语句发现查询结果与自己从库里查的相同。
c = Getresult()
result = c.getresult(PlateNo=PlateNo)
print(result)
打印出查询语句发现参数前后多了空格:
select image_check_result from XX.tasks where plate_no=' LPN0055 ';
解决办法: 去掉所传参数两侧的空格
PlateNo = PlateNo.strip() # 去掉PlateNo两侧的空格
# 查询场内车辆
cursor.execute('select image_check_result from XX.tasks where plate_no=%r;' % PlateNo)
五、Allure报告总览只记录最后一遍的运行结果(未解决)
在一定时间范围内重复运行,或者运行多次后生成allure报告,allure总览只统计了运行一遍的结果,实际运行了多遍。 网上有人说:“同一个测试环境的多个执行节点执行同一个用例,测试结果以最后一次执行结果为准,会覆盖掉之前所有别的节点的执行结果,一份测试报告中同一个测试用例的执行结果必须唯一。这是分布式测试的设计机制。” 这里采取设定在一定时间范围内运行的方式,但是最后一遍之前执行的具体信息只能通过时间刻度查看。
六、定位不到元素(1)
同样的代码,环境不同,有的能执行,有的提示元素不能点击。 报错:
selenium.common.exceptions.ElementClickInterceptedException: Message: element click intercepted: Element <button onclick="addinput()">...</button> is not clickable at point (826, 315). Other element would receive the click: <div style="">...</div>
原代码:
button = self.d.driver.find_element_by_xpath('//button[contains(@onclick,"addinput")]')
button.click()
解决办法:
button = self.d.driver.find_element_by_xpath('//button[contains(@onclick,"addinput")]')
self.d.driver.execute_script("arguments[0].click();", button)
七、定位不到元素(2)
报错:
selenium.common.exceptions.ElementNotInteractableException: Message: element not interactable: element has zero size
解决办法:方法同六、定位不到元素(1)
|