zoukankan      html  css  js  c++  java
  • 截图方法get_screenshot_as_file()注意点

    def img_screenshot(self,Image_name):
        try:
           self.driver.get_screenshot_as_file('D:\workspace\thinksns\result\screenshot\fail\'+Image_name+'.jpg')
        except:
           self.log.error(u'截图失败:')

    get_screenshot_as_file()如上述代码所示,截图保存的路径必须为绝对路径,如果上述写为相对路径截图会失败哦!切记

    如果我们想在截的图名字上加上时间可以如下:

        def img_screenshot(self,Image_name):
            try:
                now = time.strftime('%Y-%m-%d_%H-%M-%S') #截图的方法中不允许存在以下符号 / : * ? # ” < > |
                self.driver.get_screenshot_as_file('D:\workspace\thinksns\result\screenshot\fail\'+Image_name+now+'.png') #这里路径必须为绝对路径不然截图失败
            except:
                self.log.error(u'截图失败:')
    原本方法是这样写的time.strftime('%Y-%m-%d_%H:%M:%S') 但是因为截图的方法中不允许存在以下符号 / : * ? # ” < > |不然截图失败,所以只能将:改为-
    墨者看遍天下皆是丹青,测试看尽万物皆是bug
  • 相关阅读:
    MVC Form
    The way to learn english
    Test FastThree
    C#中Trim()、TrimStart()、TrimEnd()的用法
    c# Dictionary 简介
    visual studio快捷键大全
    ASP.NET MVC 中 ActionResult
    MVC4中使用 Ninject
    MVC Chapter 12 Overview of MVC Projects
    ASP.NET Razor
  • 原文地址:https://www.cnblogs.com/striver-dl/p/14083594.html
Copyright © 2011-2022 走看看