2021年6月15日
摘要: linux 基本命令 date:查看时间 ping cp :copy scp ctrl + c (中止) ls, ls -l, ls -a, ls -lt tar zcvf 压缩包文件名 目录文件名列表 tar zxvf 压缩包文件名 pwd :查看当前路径 whereami cd :切换路径 ch 阅读全文
posted @ 2021-06-15 15:19 zennpumpkin 阅读(32) 评论(0) 推荐(0) 编辑
摘要: pytest -h 1. pytest --collection-only testcases 只收集要运行的case,但不运行 2. pytest -k (匹配表达式) pytest -k "case1 and case2" --collection-only pytest -k "case1 o 阅读全文
posted @ 2021-06-15 11:54 zennpumpkin 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 1. import packages from selenium import webdriver from selenium.webdriver.common.keys import Keys 2. 元素操作 清空文本 elm.clear() 输入文本 elm.send_keys('xxxx') 阅读全文
posted @ 2021-06-15 09:57 zennpumpkin 阅读(171) 评论(0) 推荐(0) 编辑