摘要: <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, 阅读全文
posted @ 2022-12-13 18:17 进击的bug~ 阅读(22) 评论(0) 推荐(0) 编辑
摘要: mysql查询练习 新建一个查询用的数据库:selectTest CREATE DATABASE selectTest; 选择该数据库: USE selectTest; 学生表: student 学号 姓名 性别 出生日期 所在班级 CREATE TABLE student( s_no VARCHA 阅读全文
posted @ 2022-12-11 17:24 进击的bug~ 阅读(11) 评论(0) 推荐(0) 编辑
摘要: Allure+jenkins配置 http://plugincompat.herokuapp.com/ https://docs.pytest.org/en/latest/reference.html#ini-options-ref 1、Allure 的使用 1、下载Allure: # 下载 All 阅读全文
posted @ 2022-12-10 18:16 进击的bug~ 阅读(502) 评论(0) 推荐(0) 编辑
摘要: 1、Xpath语法 xpath介绍:XPath即为XML路径语言(XML Path Language),它是一种用来确定XML文档中 某部分位置的语言。 一,作用和痛点 前面的只能是单一属性,文本, 标签名称。 可以通过 e.find_elment 一层层查找下去,但是麻烦 综合各个条件, xpat 阅读全文
posted @ 2022-12-10 18:02 进击的bug~ 阅读(1316) 评论(0) 推荐(0) 编辑
摘要: 1、selenium的基础操作 1、selenium的元素定位:八大定位(面试) 2、selenium的原理(面试) 3、driver的方法和属性 4、三大等待(面试必问) 1、强制等待 2、显性等待 3、隐形等待 5、三大切换 alert切换 iframe 窗口切换 2、selenium的高级操作 阅读全文
posted @ 2022-12-10 17:43 进击的bug~ 阅读(321) 评论(0) 推荐(0) 编辑
摘要: 测试类 import pytest class TestLogin1(): def test_case01(self,fixfup_function,fixfup_class): print("test_csae01") @pytest.mark.slow def test_case02(self, 阅读全文
posted @ 2022-12-02 00:16 进击的bug~ 阅读(73) 评论(0) 推荐(0) 编辑
摘要: https://registry.npmmirror.com/binary.html?path=chromedriver/ 阅读全文
posted @ 2022-12-01 22:25 进击的bug~ 阅读(71) 评论(0) 推荐(0) 编辑
摘要: ###python面试题收集链接: https://www.cnblogs.com/bigtreei/p/9127672.html 阅读全文
posted @ 2022-11-25 23:42 进击的bug~ 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 被测试的函数 def login_check(username=None,password=None): """ 登录校验 :param username: :param password: :return: """ if username !=None and password !=None: i 阅读全文
posted @ 2022-11-25 19:25 进击的bug~ 阅读(10) 评论(0) 推荐(0) 编辑
摘要: ###读取的excel文件、文件扩展名:xlsx | case_id | title | expected | param | result | | | | | | | | 1 | 登录成功 | {"code":0,"msg":"登录成功"} | {"username":"gxj","passwor 阅读全文
posted @ 2022-11-25 19:21 进击的bug~ 阅读(48) 评论(0) 推荐(0) 编辑