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