前言
- 这其实是将自己写的文章进行一个总结分类,并不代表最佳学习路线
- 会不断更新这篇文章...没链接的文章正在编写ing...会不会哪天我的这个目录就出现在培训机构的目录上了...
- 目前实战比较少(要是有多点实战,我就开培训了哈哈哈)
- 再次强调!没有写的内容不代表不用学哈!这里只是将自己写的进行一个归类!
Python
基础
数据类型相关
Python - 基础数据类型 Number 数字、bool 布尔、complex 复数
Python - r'', b'', u'', f'' 的含义
Python - 字符串 encode
循环相关
函数相关
Python - 函数形参之必填参数、默认参数、可变参数、关键字参数的详细使用
Python - 基本数据处理函数round()、int()、floor()、ceil()
Python - 3.8 新特性之仅位置参数 & 仅关键字参数
Python - bytes()
面向对象编程
Python - 面向对象编程 - 什么是 Python 类、类对象、实例对象
Python - 面向对象编程 - __init__() 构造方法
Python - 面向对象编程 - __del__() 析构方法
Python - 面向对象编程 - 类变量、实例变量/类属性、实例属性
Python - 面向对象编程 - 实例方法、静态方法、类方法
Python - 面向对象编程 - 公共属性、保护属性、私有属性
Python - 面向对象编程 - 使用 super() 的一些注意事项
Python - 面向对象编程 - __new__() 和单例模式
Python - 面向对象编程 - 魔术方法(双下划线方法)
文件相关
Python - with open()、os.open()、open()的详细使用
Python - 文件读取read()、readline()、readlines()区别
高级点的
Python 高级特性(2)- 可迭代对象 iterable
typing、类型提示
Python - typing 模块 —— Callable
Python - typing 模块 —— Any Type
Python - typing 模块 —— TypeVar 泛型
Python - typing 模块 —— Optional
Pydantic
Python - pydantic 入门介绍与 Models 的简单使用
新奇的 Python 库
Python - 超好用的第三方库pathlib,快速获取项目中各种路径
Python - loguru日志库,高效输出控制台日志和日志记录
常见问题解决方案
Python常见问题 - 使用openpyxl模块时出现错误: zipfile.BadZipFile: File is not a zip file
Python常见问题 - 写入数据到 excel 报 ValueError: invalid literal for int() with base 10 错误
做项目可能会用到的
Python - 生成 requirement.txt 文件
数据库相关
新人写的不着调工具类
仅做记录,不值得参考
很low的基础习题集
接口自动化
python接口自动化测试 - configparser配置文件解析器详细使用
python接口自动化测试 - unittest框架基本使用
python接口自动化测试 - unittest框架suite、runner详细使用
python接口自动化测试 - requests库的post请求进行文件下载
python接口自动化测试 - requests库的post请求进行文件上传
python接口自动化测试 - requests库的基础使用
python接口自动化测试 - 数据驱动DDT模块的简单使用
常见问题解决方案
Python常见问题 - python3 requests库提示警告InsecureRequestWarning的问题
Python常见问题 - python3 使用requests发送HTTPS请求报certificate verify failed 错误
Pytest+Allure
Pytest系列(3) - setup和teardown的详细使用
Pytest系列(6) - conftest.py的详细讲解
Pytest系列(9) - 参数化@pytest.mark.parametrize
Pytest系列(10) - fixture 传参数 request的详细使用
Pytest系列(11)- 失败重跑插件pytest-rerunfailures的详细使用
Pytest系列(12)- 测试结果生成HTML报告插件之pytest-html的详细使用
Pytest系列(13)- 重复执行用例插件之pytest-repeat的详细使用
Pytest系列(14)- 配置文件pytest.ini的详细使用
Pytest系列(15)- 多重校验插件之pytest-assume的详细使用
Pytest系列(16)- 分布式测试插件之pytest-xdist的详细使用
Pytest系列(17)- pytest-xdist分布式测试的原理和流程
Pytest系列(18)- 超美测试报告插件之allure-pytest的基础使用
Pytest系列(20)- allure的特性,@allure.step()、allure.attach的详细使用
Pytest系列(21)- allure的特性,@allure.description()、@allure.title()的详细使用
Pytest系列(22)- allure的特性,@allure.link()、@allure.issue()、@allure.testcase()的详细使用
Pytest系列(23)- allure 打标记之 @allure.epic()、@allure.feature()、@allure.story() 的详细使用
Pytest系列(25)- @allure.severity 标记用例级别
Pytest系列(26)- 清空 allure 历史报告记录
Pytest系列(28)- 参数化 parametrize + @allure.title() 动态生成标题
Pytest系列(29)- 详解 allure.dynamic 动态生成功能
实战小项目
Docker + Jenkins + Gitlab + Pytest + Allure 接口自动化测试之持续集成实战终极教程
UI 自动化
Selenium系列(二) - 详细解读针对浏览器的操作Selenium系列(一) - 详细解读8种元素定位方式
Selenium系列(三) - 详细解读针对元素常见的简单操作
Selenium系列(六) - 详细解读强制等待、隐式等待、显式等待的区别和源码解读
Selenium系列(八) - 截取完整页面和截取指定元素并保存为图片
Selenium系列(九) - 针对alert窗口的处理(警告框、确认框、对话框)和源码解读
Selenium系列(十) - 针对Select下拉框的操作和源码解读
Selenium系列(十一) - 针对两种上传文件方式的实现方案
Selenium系列(十二) - 自动化必备知识之CSS选择器的详细使用
Selenium系列(十三) - 自动化必备知识之Xpath的详细使用
Selenium系列(十四) - Web UI 自动化基础实战(1)
Selenium系列(十五) - Web UI 自动化基础实战(2)
Selenium系列(十六) - Web UI 自动化基础实战(3)
Selenium系列(十七) - Web UI 自动化基础实战(4)
Selenium系列(十八) - Web UI 自动化基础实战(5)
Selenium系列(十九) - Web UI 自动化基础实战(6)
Selenium系列(二十) - PageObject模式的详细介绍
Selenium系列(21) - Cookie操作和源码解读
Selenium系列(22) - 通过selenium控制浏览器滚动条的几种方式
Selenium常见报错问题(1)- 先来认识下selenium常见异常类
Selenium常见报错问题(2)- 解决和分析StaleElementReferenceException异常
Selenium常见报错问题(3)- 解决和分析NoSuchElementException
APP 自动化
Appium自动化(2) - appium环境安装常见问题的解决方案
Appium自动化(4) - Appium Desired Capabilities 参数详解
Appium自动化(5) - 如何获取android app 的Activity 和 Package
Appium自动化(6) - 控件定位工具之uiautomatorviewer 的详细介绍
Appium自动化(7) - 控件定位工具之Appium 的 Inspector
Appium自动化(9) - appium元素定位的快速入门
Appium自动化(10) - appium高级元素定位方式之 UI Automator API 的详解
Appium自动化(11) - 详解 Applications 类里的方法和源码解析
Appium自动化(12) - 详解 HardwareActions 类里的方法和源码分析
Appium自动化(13) - 详解 Keyboard 类里的方法和源码分析
Appium自动化(14) - 详解 ActionHelpers 类里的方法和源码分析
Appium自动化(15) - 针对 webview 进行自动化测试
Appium自动化(16) - 使用手机浏览器进行自动化测试
常见问题解决方案
Appium问题解决方案(1)- 设置unicodeKeyboard: True运行脚本后,手机输入时无法调出软键盘
Appium问题解决方案(3)- java.lang.IllegalStateException: UiAutomation not connected!
Appium问题解决方案(2)- AttributeError:module 'appium.webdriver' has no attribute 'Remote'
Appium问题解决方案(4)- Error while obtaining UI hierarchy XML file: com.android.ddmlib.SyncException
Appium问题解决方案(6)- Java堆栈错误:java.lag.ClassNotFoundException:org.eclipse.swt.widets.Control
Appium问题解决方案(9)- Original error: Failed to launch Appium Settings app: Condition unmet after 5090 ms
Appium问题解决方案(10)- Original error: Swipe did not complete successfully
RobotFramework
Robot Framework(6)- BuiltIn 测试库常用的关键字列表
Robot Framework(7)- DateTime 测试库常用的关键字列表
Robot Framework(8)- Collections 测试库常用的关键字列表
Robot Framework(12)- 详细解读 RF 的变量和常量
Robot Framework(13)- RF 循环的详细使用
Robot Framework(14)- Variables 表的详细使用和具体例子
Flask
Flask(2)- 第一个 Flask Application
常见问题解决方案
Flask - 解决 app.run() 添加 host、port、debug 参数后运行不生效的问题