- 博客(23)
- 收藏
- 关注
原创 git基础 回退 git reset --hard head
git reset --hard HEAD^^ # 回退到当前最新版本的前二个版本。git reset --hard HEAD^ # 回退到当前最新版本的前一个版本。git reset --hard 139dcfaa # 回退到指定版本。git reset --hard HEAD # 回退到当前最新版本。
2023-02-09 22:39:00 788
原创 pytest基础 html报告 内容打印 参数 -v --tb-short
【代码】pytest基础 html报告 内容打印 参数 -v --tb-short。
2023-02-09 22:37:55 162
原创 python基础--日期和时间
yyyymmdd hhMMss形式print time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()) 2016-04-07 10:25:09from datetime import datetimenow_time = datetime.now()2020-02-09 15:27:42.420705
2022-01-06 15:39:39 382
原创 python 按照列表下标批量删除数据
cnt = 0list_index = [1, 3, 5]list = ['a', 'b', 'c', 'd', 'e', 'f']for i in list_index: del list[i-cnt] cnt += 1
2021-10-19 11:59:12 645
原创 python 判断是否是数字(int float)
出自:https://www.cnblogs.com/zxmbky/p/9160822.htmlnum=input(“input:”)if num.replace(".",’’).isdigit():if num.count(".")==0:print(‘int’)elif num.count(".")==1:print(‘float’)elseprint(“即不是int类型,也不是float类型”)...
2021-10-18 09:38:23 693
原创 python 一些字典合并为列表、列表拆分字典操作
字典合并为列表list_data_t = [{"a":"1","b":"2","c":"3"}, {"a":"1+","b":"2+","c":"3+"}, {"a":"1-","b":"2-","c":"3-"}, {"a":"1#","b":"2#","c":"3#"}, ]result = {} # {a:[1,1+,1-],bb:[]}for key in lis
2021-06-06 12:08:12 1575
原创 python3+selenium+unittest+webdriver+HtmlTestRunner以及多线程执行
安装selenium在以下地址去下载tar.gz包:https://pypi.org/project/selenium/#files在命令控制台执行命令:python setup.py install
2021-05-04 13:50:38 344
原创 Executor使用
1.调用包为import java.util.concurrent.Executors;2.Executor和Executors的区别:Executor:是一个接口,执行提交的对象Runnable任务void execute(Runnable command);Executors:是一个包装类,提供很多静态方法,不能被实例化(如下被私有private),像一个工具类,和Collections类似private Executors() {}...
2021-04-26 18:09:51 239
原创 tomcat+前端的简单配置
1.进入tomcat的apache-tomcat-9.0.44\conf目录找到server.xml,如下位置加入一行:<Context path="/" docBase="C:\webLoginMenu" reloadable="true"/>C:\webLoginMenu为个人自己的前端代码路径,不能照搬2.再进入bin目录下,找到startup.bat,双击启动tomcat,如下图:4.启动访问:http://localhost:8080/Tddindex.html.
2021-04-25 07:03:52 908
原创 HtmlTestRunner报告样式优化
HtmlTestRunner报告样式优化1.HtmlTestRunner下载地址:http://tungwaiyip.info/software/HTMLTestRunner.html2.配置相关参考:https://www.cnblogs.com/benpao1314/p/9633862.html3.HtmlTestRunner中,在里嵌入如下html代码:<table id='tableHead'> <tr> <td id
2021-04-25 00:11:22 380
原创 pycharm创建文件时默认填入
1.第一步,找到设置2.设置模板3.在空白框上填入:# -*- coding: UTF-8 -*- #@Time : ${DATE} ${TIME} #@File : ${NAME}.py
2021-04-24 11:39:23 117
原创 python类下的的unittest测试
python类下的的unittest测试:1.注意:一般是“test_xxx"格式才能被识别,否则不能识别出来2.main()方法启动
2021-04-24 11:17:39 89
原创 selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of
SessionNotCreatedException报错是因为–webdriver.exe驱动版本不匹配,问题解决下:1.在以下链接下载对应浏览器版本的驱动即可http://chromedriver.storage.googleapis.com/index.html2.下载的chromedriver.exe放在Scripts下即可:问题:...
2021-04-24 10:28:19 605
转载 浏览器驱动网址汇总
Chrome点击下载chrome的webdriver: http://chromedriver.storage.googleapis.com/index.html不同的Chrome的版本对应的chromedriver.exe 版本也不一样,下载时不要搞错了。如果是最新的Chrome, 下载最新的chromedriver.exe 就可以了。把chromedriver的路径也加到环境变量里。FirefoxFirefox驱动下载地址为:https://github.com/mozilla/geckodr
2021-04-24 10:11:54 429
原创 【win10系统】文件后缀显示与不显示设置的两种方法
文件后缀显示与不显示设置的两种方法第一种:点击“查看”,直接勾选“文件扩展名”第二种:点击“查看”,直接勾选“文件扩展名”,然后在对话框中,点击“查看”,找到“隐藏已知文件夹类型的扩展名”,勾选就隐藏,不勾选则显示...
2021-04-24 06:32:52 2107
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人