摘要:
1. 下载Xmind,并安装 官网: https://www.xmind.cn/download/ 直接下载即可 2. 激活破解 2.1右击软件,打开文件所在的位置(默认路径:C:\Program Files\XMind) 2.2将app.asar文件复制到resources路径下,替换目标中的文件 阅读全文
随笔- 85
文章- 0
评论- 1
阅读-
83289
摘要:
统计case运行的结果需要使用pytest-json-report插件,需要安装 pip install pytest-json-report 1 import pytest 2 from pytest_jsonreport.plugin import JSONReport 3 4 5 6 clas 阅读全文
摘要:
一、将str转化为dict1.1 使用Python 3的内置ast库的函数literal_eval。最好使用literal_eval而不是eva 1 import ast 2 str_of_dict = "{'name': 'xiaohong', 'age': '18'}" 3 new_dic = 阅读全文
摘要:
1、下载JDK; a.百度网盘 链接:https://pan.baidu.com/s/17vgXP0mCNaFiGum5ukEN5w 提取码:n4yj 2、双击安装程序,安装目录若不修改,可直接傻瓜式下一步操作直至安装完成 3、程序安装完毕后,进行环境变量的配置 a、右键单击计算机->属性->高级系 阅读全文
摘要:
方法一、jsonpatch 1.1安装 pip install jsonpatch 1.3使用 1 import jsonpatch 2 3 src = {'numbers': [1, 3, 4, 8], 'foo': 'bar'} 4 dst = {'foo': 'bar4', 'numbers' 阅读全文
摘要:
安装python插件 使用命令安装 pip install allure-pytest下载源码安装 https://pypi.org/project/allure-pytest/ 安装allure下载: https://bintray.com/qameta/generic/allure2 前置条件: 阅读全文
摘要:
一、创建Jenkins项目 步骤:1. 进入Jenkins主页 2. 点击新建任务 3. 输入项目名称 ,并点击构建一个自由风格的软件项目。 4. 点击确定 二、配置Jenkins项目 General配置步骤:勾选 GitHub project,输入 Project url 源码管理配置步骤: 1. 阅读全文
摘要:
3 jenkins重启 浏览器地址栏输入 http://localhost:8080/restart 阅读全文