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知识库 -> 独立脚本pytest封装 -> 正文阅读

[Python知识库]独立脚本pytest封装

1、类封装准备工作

建议先在普通的.py文件中调用要封装的测试脚本

2、错误异常处理

方法1:捕获异常-抛出异常-处理异常

try:
    可能会报错的代码
except Exception as e :
    print (e)
finally:
    报错后要运行的处理

方法2:重新修改脚本

3、pytest脚本优化,不同的测试方法,有相同的冗余代码

1.前置方法:每个测试方法前都需要进行的处理

setup_method,只对类的内部方法有效,class Testxxx,def testxxx(self)

2.后置方法:每个测试方法执行后,要完成的一些回收工作

teardown_method,只对类的内部方法有效,class Testxxx,def testxxx(self)

3.数据驱动法技术:

标签:@pytest.mark.paramtrize

语法说明:@pytest.mark.paramtrize('参数名1','参数名2',([参数值1,参数值2])

实例:@pytest.mark.parametrize('uname,pwd,state', (["atstudy", "51testing", 1], ["atstudy1", "51testing", 0]))

4.传入的语法

普通方法:def test_xxx(参数名1,参数名2,参数名3)

类方法:def ?test_xxx(self,参数名1,参数名2,参数名3)

注意:在方法体的声明中要写出定义的全部参数名???

4、pytest异常处理-抛出异常脚本? ? ?

from selenium import webdriver

# 1、创建测试类
class Test_Django_Login():
# 2、创建测试方法
#   正常登录测试方法:用户名不存在
#   登录初始化
    def setup_method(self):
        self.url="http://testplt.share.atstudy.com/admin/login/?next=/admin/"
        self.driver=webdriver.Chrome()
        self.driver.get(self.url)
    def test_login_01(self):
        self.driver.find_element_by_name('username').send_keys('atstudy')
        self.driver.find_element_by_name('password').send_keys('51testing')
        self.driver.find_element_by_xpath('//*[@id="login-form"]/div[3]/input').click()
        # 检查点
        result=self.driver.find_element_by_xpath('//*[@id="content-main"]/div/table/caption/a').text
        print(result)
        # 3、通过断言进行判断
        # self.assertIn("测试平台",result)
        assert result=="测试平台"


        # 异常登录测试方法
    def test_login_02(self):
        # self.url="http://testplt.share.atstudy.com/admin/login/?next=/admin/"
        self.driver.find_element_by_name('username').send_keys('atstudy1')
        self.driver.find_element_by_name('password').send_keys('51testing')
        self.driver.find_element_by_xpath('//*[@id="login-form"]/div[3]/input').click()
         # 检查点
        # ************************************
        # 异常处理方法1通过try-except进行异常处理
        try:
            result= self.driver.find_element_by_xpath('//*[@id="content-main"]/div/table/caption/a').text
            print(result)
            assert result=="测试平台"
        except Exception as e:
            print(e)
        finally:
            result= self.driver.find_element_by_xpath('//*[@id="content"]/p').text
            # 断言:包含对比
            assert "请输入" in result

5、pytest异常处理-在知道预期结果的情况下,修改脚本,url进行对比

? ? ?

from selenium import webdriver

# 1、创建测试类
class Test_Django_Login():
# 2、创建测试方法
#   正常登录测试方法:用户名不存在
#   登录初始化
    def setup_method(self):
        self.url="http://testplt.share.atstudy.com/admin/login/?next=/admin/"
        self.driver=webdriver.Chrome()
        self.driver.get(self.url)
    def test_login_01(self):
        self.driver.find_element_by_name('username').send_keys('atstudy')
        self.driver.find_element_by_name('password').send_keys('51testing')
        self.driver.find_element_by_xpath('//*[@id="login-form"]/div[3]/input').click()
        # 检查点
        result=self.driver.find_element_by_xpath('//*[@id="content-main"]/div/table/caption/a').text
        print(result)
        # 3、通过断言进行判断
        # self.assertIn("测试平台",result)
        assert result=="测试平台"


        # 异常登录测试方法
    def test_login_02(self):
        # self.url="http://testplt.share.atstudy.com/admin/login/?next=/admin/"
        self.driver.find_element_by_name('username').send_keys('atstudy1')
        self.driver.find_element_by_name('password').send_keys('51testing')
        self.driver.find_element_by_xpath('//*[@id="login-form"]/div[3]/input').click()
             # 异常处理方法3改变检查点:进行url的对比
        # 获取当前页面的url
        result=self.driver.current_url
        print(result)
        assert result==self.url
    def teardown_method(self):
        self.driver.close()

6、pytest异常处理-在知道预期结果的情况下,修改脚本,改变检查点,进行错误信息对比

       # 异常处理方法2改变检查点:进行错误信息比对
        result= self.driver.find_element_by_xpath('//*[@id="content"]/p').text
        # 断言:包含对比
        assert "请输入" in result

  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2022-09-04 01:07:23  更:2022-09-04 01:11:23 
 
开发: 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/15 9:20:46-

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