51Testing软件测试论坛

标题: UI自动化生成截图 [打印本页]

作者: 小文0111    时间: 2019-4-8 14:23
标题: UI自动化生成截图
生成截图用的
  1. currentTimeToS = time.strftime("%Y-%m-%d-%H_%M_%S", time.localtime(time.time()))
  2. currentTimeToD = time.strftime("%Y-%m-%d", time.localtime(time.time())
  3. path = 'C:\\Git\\Intelligent correction' + '\\' + currentTimeToD + '\\' + currentTimeToS + '.jpg'
  4. driver.get_screenshot_as_file('C:\\Git'+'\\'+currentTimeToD+'\\'+currentTimeToS+'.jpg')
复制代码


由于“currentTimeToD”这个文件夹不存在,所以不能创建成功

解决方法:

makedirs()方法  来递归创建目录

  1. currentTimeToS = time.strftime("%Y-%m-%d-%H_%M_%S", time.localtime(time.time()))
  2. currentTimeToD = time.strftime("%Y-%m-%d", time.localtime(time.time()))
  3. path = 'C:\\Git\\Intelligent correction' + '\\' + currentTimeToD + '\\' + currentTimeToS + '.jpg'
  4. os.makedirs(path)
  5. driver.get_screenshot_as_file('C:\\Git'+'\\'+currentTimeToD+'\\'+currentTimeToS+'.jpg')
复制代码

作者: Miss_love    时间: 2020-12-30 17:02
支持分享




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2