摘要: 从这个地址下载:https://github.com/franz-see/Robotframework-Database-Library 下载的压缩包文件名是这个:Robotframework-Database-Library-master.zip; 后来又点了下上面下载地址页面的find file 阅读全文
posted @ 2018-07-18 10:24 fenglj 阅读(143) 评论(0) 推荐(0) 编辑
  2023年5月29日
摘要: 前提:Jenkins部署在Windows服务器的tomcat容器里,执行python时控制台日志中文乱码 step1:设置Jenkins环境变量:系统管理→系统设置→全局属性→环境变量JAVA_TOOL_OPTIONS=-Dfile.encoding=UTF8PYTHONIOENCODING=UTF 阅读全文
posted @ 2023-05-29 13:52 fenglj 阅读(965) 评论(0) 推荐(0) 编辑
  2022年3月16日
摘要: 定位不到元素,如题报错。 睡上1秒钟,可解决。 time.sleep(1) 阅读全文
posted @ 2022-03-16 15:30 fenglj 阅读(1154) 评论(0) 推荐(0) 编辑
  2022年3月10日
摘要: 如题 阅读全文
posted @ 2022-03-10 16:47 fenglj 阅读(100) 评论(0) 推荐(0) 编辑
  2022年3月7日
摘要: 报错代码:self.chromedriver.find_element('username').send_keys('supervisor') 正确代码:self.chromedriver.find_element(value='username').send_keys('supervisor') 阅读全文
posted @ 2022-03-07 15:29 fenglj 阅读(3262) 评论(0) 推荐(0) 编辑
  2021年12月29日
摘要: 1、进入cmd窗口:w+r 2.查看python安装路径:where python 适用于查看任何已经安装的app. 阅读全文
posted @ 2021-12-29 09:55 fenglj 阅读(763) 评论(0) 推荐(0) 编辑
  2021年11月11日
摘要: Python break语句,就像在C语言中,打破了最小封闭for或while循环 阅读全文
posted @ 2021-11-11 15:24 fenglj 阅读(9) 评论(0) 推荐(0) 编辑
  2021年11月8日
摘要: 如题 阅读全文
posted @ 2021-11-08 13:25 fenglj 阅读(118) 评论(0) 推荐(0) 编辑
  2021年11月5日
摘要: 报错如下:newman.ps1 cannot be loaded because running scripts is disabled on this system 脚本在系统不可用 解决办法: 使用管理员启动cmd或power shell 窗口 阅读全文
posted @ 2021-11-05 16:09 fenglj 阅读(172) 评论(0) 推荐(0) 编辑
  2021年11月4日
摘要: 在公司网络不好,pip install 要安装的包名 总是报网络连接失败的情况下,windows环境可使用下面的步骤安装想要的库: 1、百度搜索库名 2、在pip官网,下载.whl文件 3、在下载的文件路径:pip install XXX.whl 阅读全文
posted @ 2021-11-04 12:51 fenglj 阅读(70) 评论(0) 推荐(0) 编辑
  2021年9月14日
摘要: newman run BAIDU.postman_collection.json --environment baidu.postman_environment.json --iteration-data data.csv --globals DEC.postman_globals --timeou 阅读全文
posted @ 2021-09-14 13:51 fenglj 阅读(35) 评论(0) 推荐(0) 编辑