摘要: Python自动化测试框架-pytest 源码: https://github.com/pytest-dev/pytest 文档: https://docs.pytest.org/en/8.2.x/ 安装: pip install pytest 查看版本: pytest -V 简单样例 # cont 阅读全文
posted @ 2024-06-15 23:23 rustling 阅读(104) 评论(0) 推荐(0)
摘要: 官网: https://jmeter.apache.org/ 安装JMeter Windows下安装 1.安装JDK 下载地址: https://www.oracle.com/java/technologies/downloads/#jdk22-windows 执行java -version查看版本 阅读全文
posted @ 2024-06-12 22:58 rustling 阅读(83) 评论(0) 推荐(0)
摘要: 1.环境变量文件不同 bash是.bashrc csh是.cshrc 2.设置变量方法不同 bash是TMOUT=0 csh是set autologout=0 3.设置环境变量方法不同 bash是export PATH=$PATH:/home/your_path csh是setenv PATH $P 阅读全文
posted @ 2024-06-11 22:14 rustling 阅读(319) 评论(0) 推荐(0)
摘要: 1.安装 # Debian 12 安装 MySQL sudo apt update sudo apt install default-mysql-server # 查看服务 systemctl status mysql # 重启服务 systemctl restart mysql # 查看版本 my 阅读全文
posted @ 2024-06-02 14:29 rustling 阅读(29) 评论(0) 推荐(0)
摘要: 官网 https://www.selenium.dev/ 准备测试环境 使用selenium需要 python3 + selenium + chrome 前提条件 Python3已安装 谷歌浏览器已安装 安装步骤 安装selenium pip install selenium 安装 chrome d 阅读全文
posted @ 2024-04-01 23:18 rustling 阅读(91) 评论(0) 推荐(0)
摘要: # test in debian 10 # 检查当前域名服务 ping baidu.com # 注释DNS当前服务,并添加本机IP vi /etc/resolv.conf #nameserver 108.61.10.10 nameserver 127.0.0.1 # 查看是否已安装bind9 dpk 阅读全文
posted @ 2024-03-24 22:47 rustling 阅读(48) 评论(0) 推荐(0)
摘要: 全称: 美国信息交换标准代码 十进制 字符 十进制 字符 十进制 字符 十进制 字符 0 NUL 32 SP 64 @ 96 ` 1 SOH 33 ! 65 A 97 a 2 STX 34 " 66 B 98 b 3 ETX 35 # 67 C 99 c 4 EOT 36 $ 68 D 100 d 阅读全文
posted @ 2024-03-20 23:25 rustling 阅读(79) 评论(0) 推荐(0)
摘要: 什么是软件测试? 软件测试是一种系统性的活动,旨在评估软件产品的质量。其主要目的是发现软件中的缺陷和问题,确保软件在发布和使用时能够达到预期的质量标准。 软件测试的目的是? 1.验证软件实现与需求一致; 2.发现缺陷,提高质量; 3.评估质量(版本的质量情况,能否发布) 软件开发模式: 瀑布、敏捷、 阅读全文
posted @ 2024-03-01 23:27 rustling 阅读(52) 评论(0) 推荐(0)
摘要: 下载地址: VirtualBox 7.0 官网: https://www.virtualbox.org/wiki/Downloads Debian12 官网: https://www.debian.org/index.zh-cn.html 安装 打开VirtualBox,点击新建,根据提示安装。 安 阅读全文
posted @ 2023-11-18 16:25 rustling 阅读(615) 评论(0) 推荐(0)
摘要: 本地部署stable-diffusion-webui stable-diffusion-webui是集成Stable Diffusion的web应用,可以更加方便的用来AI生图。 GitHub: https://github.com/AUTOMATIC1111/stable-diffusion-we 阅读全文
posted @ 2023-11-05 09:39 rustling 阅读(417) 评论(0) 推荐(0)