gpt4 book ai didi

python - 如果我的 nosetests 失败,我该如何截取屏幕截图?

转载 作者:太空狗 更新时间:2023-10-29 22:11:34 26 4
gpt4 key购买 nike

我正在使用 nosetests 运行 selenium webdriver 测试。每当 nosetests 失败时,我想截屏。我怎样才能以最有效的方式做到这一点,通过使用 webdriver、python 或 nosetests 功能?

最佳答案

我的解决方案

import sys, unittest
from datetime import datetime

class TestCase(unittest.TestCase):

def setUp(self):
some_code

def test_case(self):
blah-blah-blah

def tearDown(self):
if sys.exc_info()[0]: # Returns the info of exception being handled
fail_url = self.driver.current_url
print fail_url
now = datetime.now().strftime('%Y-%m-%d_%H-%M-%S-%f')
self.driver.get_screenshot_as_file('/path/to/file/%s.png' % now) # my tests work in parallel, so I need uniqe file names
fail_screenshot_url = 'http://debugtool/screenshots/%s.png' % now
print fail_screenshot_url
self.driver.quit()

关于python - 如果我的 nosetests 失败,我该如何截取屏幕截图?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14991244/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com