Webドライバーのテストが失敗した場合(例外またはアサーションエラー)、スクリーンショットを自動キャプチャしたい。 Python unittestとSeleniumWebdriverを使用しています。この問題の解決策はありますか?
firefoxでいくつかのWebドライバーの処理を実行します...古い画像ファイルの例外についてスクリーンショットを保存します。
from datetime import datetime
from Selenium import webdriver
browser = webdriver.Firefox()
try:
# do some webdriver stuff here
except Exception as e:
print e
now = datetime.now().strftime('%Y-%m-%d_%H-%M-%S')
browser.get_screenshot_as_file('screenshot-%s.png' % now)
別の方法は、tearDown
メソッドに以下を追加することです。
if sys.exc_info()[0]:
test_method_name = self._testMethodName
self.driver.save_screenshot("Screenshots/%s.png" % test_method_name)
これは、次のようなテストクラスを想定しています。
class SeleniumTest(unittest2.TestCase):
...
def tearDown(self):
if sys.exc_info()[0]:
test_method_name = self._testMethodName
self.driver.save_screenshot("Screenshots/%s.png" % test_method_name)
super(SeleniumTest, self).tearDown()
def test_1(self):
...
def test_2(self):
...
今後の参考資料/ Peopleは、Python3で機能するソリューションであり、例外と失敗したアサートの両方で機能します。
( https://stackoverflow.com/a/23176373/9427691 に基づく)
#!/usr/bin/env python
"""
An Example code to show the set-up with screen-shot on exception.
"""
import unittest
from Selenium import webdriver
class TestDemo(unittest.TestCase):
"""An Example test Case, to show off the set-up of a screen-shot on exception."""
def setUp(self):
"""Set up the Firefox Browser and the Tear Down."""
self.driver = webdriver.Firefox()
self.driver.delete_all_cookies()
# NOTE: In addCleanup, the first in, is executed last.
self.addCleanup(self.driver.quit)
self.addCleanup(self.screen_shot)
self.driver.implicitly_wait(5)
def screen_shot(self):
"""Take a Screen-shot of the drive homepage, when it Failed."""
for method, error in self._outcome.errors:
if error:
self.driver.get_screenshot_as_file("screenshot" + self.id() + ".png")
def test_demo(self):
"""A test case that fails because of missing element."""
self.driver.get("http://www.google.com")
self.driver.find_element_by_css_selector("div.that-does-not-exist")
def test_demo2(self):
"""A test case that fails because assert."""
self.driver.get("https://stackoverflow.com")
self.assertEqual(True, False)
if __name__ == '__main__':
unittest.main(verbosity=2)
ザ・
self._outcome.errors
python3のみであるため、Python2では
self._outcomeForDoCleanups.errors
代わりに。
例外のスクリーンショットのみが必要な場合。このリンクをご覧ください: http://blog.likewise.org/2015/01/automatically-capture-browser-screenshots-after-failed-python-ghostdriver-tests/
これは、test_
で始まるクラスのすべてのメソッドを、メソッドが発生した場合にスクリーンショットを取得してExceptionを発生させるラッパーでラップするデコレーターを使用したソリューションです。 browser_attr
は、デコレータにWebブラウザ(ドライバ)の入手方法を指示するために使用されます。
from functools import partialmethod
def sreenshotOnFail(browser_attr='browser'):
def decorator(cls):
def with_screen_shot(self, fn, *args, **kwargs):
"""Take a Screen-shot of the drive page, when a function fails."""
try:
return fn(self, *args, **kwargs)
except Exception:
# This will only be reached if the test fails
browser = getattr(self, browser_attr)
filename = 'screenshot-%s.png' % fn.__name__
browser.get_screenshot_as_file(filename)
print('Screenshot saved as %s' % filename)
raise
for attr, fn in cls.__dict__.items():
if attr[:5] == 'test_' and callable(fn):
setattr(cls, attr, partialmethod(with_screen_shot, fn))
return cls
return decorator
@sreenshotOnFail()
class TestDemo(unittest.TestCase):
def setUp(self):
"""Set up the Firefox Browser and the Tear Down."""
self.browser = webdriver.Firefox()
def test_demo2(self):
"""A test case that fails because assert."""
self.driver.get("https://stackoverflow.com")
self.assertEqual(True, False)
フォームの探索を開始できますself._outcome.errors[1]
エラーに関する情報を見つけることができる場所。
つまり以下のコードは、アサーションエラーに対してのみ機能します
def tearDown(self):
if self._outcome.errors[1][1] and hasattr(self._outcome.errors[1][1][1], 'actual'):
self.driver.save_screenshot(self._testMethodName + '.png')
StaticLiveServerTestCaseから継承したSeleniumテストのクラスのDjango 2.2.2(unittestを使用)の場合、_feedErrorsToResultメソッドをオーバーライドしました。また、このアプローチは、呼び出されたメソッドの名前を知るためのトリッキーな方法を提供します。便利なスクリーンショット調査。
@classmethod
def _feedErrorsToResult(cls, result, errors):
"""
Overriding private method at %library root%/Lib/unittest/case.py
so you can take screenshot with any failed test and find name of the method
"""
if Selenium_TAKE_SCREENSHOTS:
for test, exc_info in errors:
if exc_info is not None:
now = datetime.now().strftime('%y-%m-%d_%H-%M-%S')
test_name = exc_info[2].tb_frame.f_locals["test_case"]._testMethodName
# noinspection PyUnresolvedReferences
cls.Selenium.get_screenshot_as_file('%s/%s-%s-%s.png' % (Selenium_SCREENSHOTS_PATH, cls.__name__, test_name, now))
# noinspection PyUnresolvedReferences
super()._feedErrorsToResult(cls, result, errors)