⏱️ Duration: 1371.39s
❌ Error:
fixturefunc = <function verify_pricing_nav at 0x7ff1c05bc040>
request = <FixtureRequest for <Function test_generate_video_and_publish[test03]>>
kwargs = {'browser': <selenium.webdriver.remote.webdriver.WebDriver (session="00d8bf4a90a95dd0a2dd8760dbe07186")>}
def call_fixture_func(
fixturefunc: "_FixtureFunc[FixtureValue]", request: FixtureRequest, kwargs
) -> FixtureValue:
if is_generator(fixturefunc):
fixturefunc = cast(
Callable[..., Generator[FixtureValue, None, None]], fixturefunc
)
generator = fixturefunc(**kwargs)
try:
fixture_result = next(generator)
except StopIteration:
raise ValueError(f"{request.fixturename} did not yield a value") from None
finalizer = functools.partial(_teardown_yield_fixture, fixturefunc, generator)
request.addfinalizer(finalizer)
else:
fixturefunc = cast(Callable[..., FixtureValue], fixturefunc)
> fixture_result = fixturefunc(**kwargs)
venv/lib/python3.10/site-packages/_pytest/fixtures.py:917:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests/test_editor_page.py:421: in verify_pricing_nav
bs_fail_with_traceback(browser, verify_pricing_nav, e)
helpers/common_helpers.py:815: in bs_fail_with_traceback
raise exception
tests/test_editor_page.py:419: in verify_pricing_nav
check_pricing_and_publish_page(browser)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
browser = <selenium.webdriver.remote.webdriver.WebDriver (session="00d8bf4a90a95dd0a2dd8760dbe07186")>
def check_pricing_and_publish_page(browser):
"""
User with a plan: Checks if a user sees the Publish Page
Keeps session alive during long rendering times to prevent Selenoid timeout
"""
# Keep checking for publish ready with periodic activity to prevent session timeout
📸 Failure Screenshot: