Created
June 4, 2024 19:26
-
-
Save SarahElson/5f0b6c10da2015b2a9abb8d928e26334 to your computer and use it in GitHub Desktop.
How to Wait in Python: Python Wait Tutorial With Examples
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from os import environ | |
import pytest | |
from selenium import webdriver | |
from smartwait_option import option_smartwait | |
@pytest.fixture(scope="function") | |
def driver(request): | |
test_name = request.node.name | |
build = environ.get("BUILD", "Python Wait Selenium") | |
username = environ.get("LT_USERNAME", None) | |
access_key = environ.get("LT_ACCESS_KEY", None) | |
selenium_endpoint = "http://{}:{}@hub.lambdatest.com/wd/hub".format( | |
username, access_key | |
) | |
chrome_options = webdriver.ChromeOptions() | |
option = { | |
"platform": "macOS Sonoma", | |
"version": "latest", | |
"name": test_name, | |
"Build": build, | |
"video": True, | |
"visual": False, | |
"network": True, | |
"console": True, | |
} | |
chrome_options.set_capability("LT:Options", option) | |
browser = webdriver.Remote( | |
command_executor=selenium_endpoint, options=chrome_options | |
) | |
yield browser | |
def fin(): | |
if request.node.rep_call.failed: | |
browser.execute_script("lambda-status=failed") | |
else: | |
browser.execute_script("lambda-status=passed") | |
browser.quit() | |
request.addfinalizer(fin) | |
@pytest.hookimpl(tryfirst=True, hookwrapper=True) | |
def pytest_runtest_makereport(item, call): | |
# this sets the result as a test attribute for LambdaTest reporting. | |
# execute all other hooks to obtain the report object | |
outcome = yield | |
rep = outcome.get_result() | |
# set a report attribute for each phase of a call, which can | |
# be "setup", "call", "teardown" | |
setattr(item, "rep_" + rep.when, rep) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment