Quantcast
Channel: Webdriver Screenshot in Python - Stack Overflow
Viewing all articles
Browse latest Browse all 16

Answer by Michael Tsioni for Webdriver Screenshot in Python

$
0
0

write this hook in conftest.py

@pytest.hookimpl(hookwrapper=True)def pytest_runtest_makereport(item):    pytest_html = item.config.pluginmanager.getplugin("html")    outcome = yield    report = outcome.get_result()    extra = getattr(report, "extra", [])    if report.when == "call":        # always add url to report        extra.append(pytest_html.extras.url(driver.current_url))        xfail = hasattr(report, "wasxfail")        if (report.skipped and xfail) or (report.failed and not xfail):            report_directory = os.path.dirname(item.config.option.htmlpath)            file_name = report.nodeid.replace("::", "_") +".png"            destination_file = os.path.join(report_directory, file_name)            driver.save_screenshot(destination_file)            if file_name:                html = '<div><img src="%s" alt="screenshot" style="width:300px;height=200px"'\'onclick="window.open(this.src)" align="right"/></div>'%file_name            # only add additional html on failure                extra.append(pytest_html.extras.html(html))        report.extra = extra

Viewing all articles
Browse latest Browse all 16

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>