BillBie

导航

上一页 1 ··· 5 6 7 8 9 10 11 下一页

2019年1月23日 #

python 使用selenium下载文件时,chrome会提示是否下载多个文件(Download multiple files)

摘要: 1.使用python+selenium+chrome 下载多个文件时,则会提示此提示语,不允许的话,则下载的文件不会被保存下来 2.则需要在启动chrome 的时候加上部分设置 options = webdriver.ChromeOptions() # options.add_argument('- 阅读全文

posted @ 2019-01-23 19:16 BillBie 阅读(154) 评论(0) 推荐(0) 编辑

2019年1月9日 #

【转载】[Jenkins] 批量删除构建历史

摘要: 转载自:https://www.cnblogs.com/shaobin0604/p/9680621.html 在jenkins的 def jobName = "zjt_UIAutoTest" def maxNumber = 80 Jenkins.instance.getItemByFullName( 阅读全文

posted @ 2019-01-09 15:00 BillBie 阅读(12) 评论(0) 推荐(0) 编辑

【转载】python time和datetime的常用转换处理

摘要: 转载自:https://www.cnblogs.com/lxmhhy/p/6030730.html time.strftime("%Y-%m-%d %H:%M:%S") datetime.datetime.strptime('%Y-%m-%d') %y 两位数的年份表示(00-99) %Y 四位数的 阅读全文

posted @ 2019-01-09 07:25 BillBie 阅读(12) 评论(0) 推荐(0) 编辑

2019年1月4日 #

windows批量删除进程

摘要: taskkill /F /IM chromedriver.exe 阅读全文

posted @ 2019-01-04 20:07 BillBie 阅读(10) 评论(0) 推荐(0) 编辑

【转载】安装tesseract 和tesserocr

摘要: 参考的博客为: https://blog.csdn.net/wang_hugh/article/details/80760940 https://blog.csdn.net/u014179267/article/details/80908790 https://blog.csdn.net/u0101 阅读全文

posted @ 2019-01-04 20:02 BillBie 阅读(12) 评论(0) 推荐(0) 编辑

2019年1月3日 #

对于unittest中获取断言异常处理后再抛出

摘要: 在开始需要注意的是 :断言失败了不会自动关闭浏览器! 1.断言如果失败为AssertionError,此时我在获取异常需写入数据 但是如果不抛出异常,则测试结果会表明为pass 的,所有需要再次抛出异常raise AssertionError(e) 或者:raise self.failureExce 阅读全文

posted @ 2019-01-03 16:41 BillBie 阅读(15) 评论(0) 推荐(0) 编辑

2018年12月15日 #

openpyxl中遇到TypeError: 'generator' object is not subscriptable

摘要: 出现在原因在于 print(sheet.rows[1]) from openpyxl import * import os class excel_readWrite: def __init__(self, xls_name,base_url=None, pagetitle=None): self. 阅读全文

posted @ 2018-12-15 12:52 BillBie 阅读(91) 评论(0) 推荐(0) 编辑

2018年12月14日 #

selenium 中 close()和 quit() 方法区别

摘要: 1.close 方法只关闭当前标签,如chrome ,在脚本运行时,产生了两个标签页,则只关闭当前driver所处的标签页 2.quit方法关闭所有的标签页 阅读全文

posted @ 2018-12-14 14:17 BillBie 阅读(15) 评论(0) 推荐(0) 编辑

2018年11月26日 #

python 中logger setlevel没有生效

摘要: 在logging中,Logger's level 的默认等级为warning 所以虽然在handler中setlervel了,Logger's level 和Handler's Level 但是level取较高的那个(待校验) 所以日志的level 为warning 解决此问题可以采用 loggin 阅读全文

posted @ 2018-11-26 18:36 BillBie 阅读(70) 评论(0) 推荐(0) 编辑

selenium两种显示等待方法

摘要: selector_value 为元素表达式 element = WebDriverWait(self.driver, 10).until(EC.presence_of_element_located((By.ID, selector_value))) element=WebDriverWait(se 阅读全文

posted @ 2018-11-26 18:01 BillBie 阅读(5) 评论(0) 推荐(0) 编辑

上一页 1 ··· 5 6 7 8 9 10 11 下一页