上一页 1 2 3 4 5 6 7 8 9 ··· 25 下一页
摘要: 目录 1. 什么是测试用例? 2. 测试用例的特征 3. 编写测试用例的好处 4. 测试用例的4个特性 5. 测试用例通常包括以下几个组成元素 6. 编写测试用例的基本方法、 6.1 等价划分法 6.2 边界值法 6.3 因果图法 6.4 判定表法 6.5 场景法 6.6 错误推算法 6.7 正交表 阅读全文
posted @ 2021-03-21 13:18 Mr-刘 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 1. 软件缺陷与软件故障 2. 软件缺陷产生的原因 3. 软件缺陷原因的几种典型 4. 软件测试和缺陷修复的代价 5. 测试的定义 6. 测试流程 7. 软件测试的分类 8. 单元测试,集成测试,系统测试和验收测试 9. 软件测试的原则 10. 软件生命周期模型 1. 软件缺陷与软件故障 案例1(狮 阅读全文
posted @ 2021-03-17 22:40 Mr-刘 阅读(113) 评论(0) 推荐(0) 编辑
摘要: Python 转为PDF三种方式 注:首先查看上一篇安装wkhtmltopdf 1. 安装pdfkit pip install pdfkit 2. 常用PDFKit 的三个API 1). from_url: 将远程URL页面导出为PDF 示例: import pdfkit # 需要指定wkhtmlt 阅读全文
posted @ 2021-03-15 15:58 Mr-刘 阅读(463) 评论(0) 推荐(0) 编辑
摘要: 1. Linux 下载 wkhtmlpdf # centos sudo yum install wkhtmltopdf # ubuntu apt-get install wkhtmltopdf 附属链接 https://wkhtmltopdf.org/downloads.html https://g 阅读全文
posted @ 2021-03-15 15:40 Mr-刘 阅读(690) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-03-10 22:20 Mr-刘 阅读(2) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-03-10 17:20 Mr-刘 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 对于Web应用,与客户端发送给服务器的数据交互至关重要。在Flask中由全局的request对象来提供这些信息 属性介绍 1. request.method Flask的request中我们提供了一个method属性,保存着前端的请求方式 print(request.method) #验证、获取请求 阅读全文
posted @ 2021-03-09 22:53 Mr-刘 阅读(404) 评论(0) 推荐(0) 编辑
摘要: 1. Selenium 滑块验证:例一 from selenium import webdriver import time,requests from selenium.webdriver.common.action_chains import ActionChains driver = webd 阅读全文
posted @ 2021-03-07 21:12 Mr-刘 阅读(149) 评论(0) 推荐(0) 编辑
摘要: # 下载安装包pip install Flask-BasicAuth pip install Flask-Babel pip install flask-admin 1. Flask-BasicAuth实现Authentication # 登录认证 Demo: 基础使用方式 from flask i 阅读全文
posted @ 2021-03-04 10:09 Mr-刘 阅读(317) 评论(0) 推荐(0) 编辑
摘要: 1. What xlrd模块? Python操作excel主要用到xlrd和xlwt这两个库,即xlrd是读excel,xlwt是写excel的库。 今天主要记录读的功能 1.1 安装 xlrd pip install xlrd 1.2 打开excel文件的方式 #文件名以及路径,如果路径或者文件名 阅读全文
posted @ 2021-03-03 14:03 Mr-刘 阅读(292) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 25 下一页