IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> Selenium+pytest+allure踩过的坑 -> 正文阅读

[Python知识库]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)

  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2021-11-17 12:43:00  更:2021-11-17 12:45:05 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/16 1:49:39-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码