We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How can I obtain the driver defined in browser in the conftest.py file, that is, the driver defined in splinter/driver/webdriver/chrome. py
The text was updated successfully, but these errors were encountered:
The driver below cannot be obtained
@pytest.hookimpl(trylast=True, hookwrapper=True) def pytest_runtest_makereport(item, call): outcome = yield rep = outcome.getresult() if rep.when == "call" or rep.when == "setup": if hasattr(driver, "get_log"): for entry in driver.get_log("browser"): print(entry) # if entry["level"] == "SERVER": # print(entry["message"]) # assert False, "Error reported in console"
Sorry, something went wrong.
No branches or pull requests
How can I obtain the driver defined in browser in the conftest.py file, that is, the driver defined in splinter/driver/webdriver/chrome. py
The text was updated successfully, but these errors were encountered: