摘要:
问题:使用pip3命令安装robotframework-excellibrary失败 报错:execfile(join(dirname(file), ‘ExcelLibrary’, ‘version.py’)) NameError: name ‘execfile’ is not defined 原因 阅读全文
摘要:
import subprocessimport schedfrom time import time, sleep# 创建sched模块的 scheduler 类的实例scheduler = sched.scheduler(time, sleep)def execute_robot_tests(cm 阅读全文
摘要:
问题描述:本机终端执行robot命令正常,pycharm代码中执行报错:/bin/sh: robot: command not found 解决方案: 1、复制本机PATH 终端输入命令echo $PATH 2、PyCharm中z新增$PATH(Edit Configurations-->Envir 阅读全文
摘要:
1、查看当前chrome浏览器版本 2、打开chromedriver下载地址 http://npm.taobao.org/mirrors/chromedriver/ 3、查找chromedriver相对应的最新版本 4、点击下载相应版本(我的为mac电脑,下载的是mac64版本) 5、下载后的文件解 阅读全文
摘要:
1、安装第三方插件 requests pip install requests 2、打开ride,接口自动化设计 3、 请求接口设置为该接口的关键字 4、接口测试case 阅读全文
摘要:
http://mirrors.jenkins.io/ Binaries debianosxopensuseredhatwarwindows Releases debian osx opensuse redhat war windows LTS Releases debian-stable osx-s 阅读全文
摘要:
一、Tomcat 1、官网下载 (https://tomcat.apache.org/download-10.cgi) download选择Tomcat 最新版(目前是10.0版本) 在Binary Distributions下的Core选择tar.gz 下载完成后,解压尽量将tomcat文件夹放入 阅读全文
摘要:
1、models中原有字段: 2、在models中添加要新增的字段: 3、命令行输入 python3 manage.py makemigrations dailyreport(APP的文件名) (pycharm可以直接在下面的Terminal中输入) 4、命令行输入:python3 manage.p 阅读全文
摘要:
一、配置java环境 1、安装java环境 jmeter是建立在JDK8或JDK9的环境下运行的,所以需要安装的java环境为JDK8,安装高版本java运行jmeter时会报错nakan 下载地址: https://www.oracle.com/java/technologies/download 阅读全文
摘要:
下载安装django,见之前文章 前台页面展示: 一、项目目录结构 二、主页面settings需要修改地方 1、子页面需要添加到主app 2、数据库设置 3、settings底部静态资源配置 三、以device子页面为例 1、device数据库模版 代码: from django.db import 阅读全文