← Back to All Reports
TESTS FAILED (0%)
Job Name
web_prod
Pipeline ID
Job ID
#4196640
Branch
master
Commit
N/A
Executed At
2026-04-29T12:44:04.578638
0
Passed
1
Failed
0
Skipped

Test Results (1 tests)

test_w18_verify_aspect_ratio_functionalities
failed
⏱️ Duration: 571.23s
❌ Error:
fixturefunc = <function user_changes_aspect_ratio at 0x7fbe751443a0> request = <FixtureRequest for <Function test_w18_verify_aspect_ratio_functionalities>> kwargs = {'browser': <selenium.webdriver.remote.webdriver.WebDriver (session="ded123c8785b8068b6be693fb24050a3")>} 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_publisher_page.py:488: in user_changes_aspect_ratio bs_fail_with_traceback(browser, user_changes_aspect_ratio, e) helpers/common_helpers.py:815: in bs_fail_with_traceback raise exception tests/test_publisher_page.py:486: in user_changes_aspect_ratio change_aspect_ratio(browser) pages/publish_functionality_page.py:142: in change_aspect_ratio get_title = browser.title venv/lib/python3.10/site-packages/selenium/webdriver/remote/webdriver.py:367: in title return self.execute(Command.GET_TITLE).get("value", "") venv/lib/python3.10/site-packages/selenium/webdriver/remote/webdriver.py:347: in execute self.error_handler.check_response(response) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <selenium.