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
  • 相关阅读:
    Linux基本权限管理
    Spring JMS
    消息中间件 ActiveMQ的简单使用
    Ionic slides 轮播图
    Spring 3 MVC and XML example
    Java 数组
    Java String类
    Java static 使用
    http://blog.csdn.net/huang_xw/article/details/7090173
    http://blog.chinaunix.net/uid-20577907-id-3519578.html
  • 原文地址:https://www.cnblogs.com/striver-dl/p/14083594.html
Copyright © 2011-2022 走看看