⏱️ Duration: 615.29s
❌ Error:
fixturefunc = <function check_brand_images at 0x7fc9ac8e6170>
request = <FixtureRequest for <Function test_w20_verify_brand_manager_functionalities_through_wizard>>
kwargs = {'browser': <selenium.webdriver.remote.webdriver.WebDriver (session="796c54622499969fba794cda873faf00")>}
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:520: in check_brand_images
bs_fail_with_traceback(browser, check_brand_images, e)
helpers/common_helpers.py:789: in bs_fail_with_traceback
raise exception
tests/test_editor_page.py:518: in check_brand_images
assert_brand_images(browser)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
browser = <selenium.webdriver.remote.webdriver.WebDriver (session="796c54622499969fba794cda873faf00")>
def assert_brand_images(browser):
"""
Verify the Brand Watermark and Logo is Synced on Editor or not
"""
> assert is_visible(browser, EDITOR_WATERMARK_FILLED)
E AssertionError
pages/editor_page.py:1516: AssertionError
📸 Failure Screenshot: