Test Results (23 tests)
⏱️ Duration: 236.27s
❌ Error:
fixturefunc = <function verify_cbe_save_enabled at 0x7f2166561630>
request = <FixtureRequest for <Function test_cbe01_cbe_service_chains_sanity[text_font]>>
kwargs = {'browser': <selenium.webdriver.remote.webdriver.WebDriver (session="ec3c01e98b40d07fd0b838148c556e33")>}
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_autopilot_page.py:825: in verify_cbe_save_enabled
bs_fail_with_traceback(browser, verify_cbe_save_enabled, e)
helpers/common_helpers.py:815: in bs_fail_with_traceback
raise exception
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
browser = <selenium.webdriver.remote.webdriver.WebDriver (session="ec3c01e98b40d07fd0b838148c556e33")>
@then('I verify that CBE save button is enabled')
def verify_cbe_save_enabled(browser):
try:
# Wait for CBE to process the change
time.sleep(5)
# Retry logic - backend needs time to enable button
max_attempts = 5
for attempt in range(max_attempts):
if not is_disabled(browser, AICHAT_SAVE_BUTT
📸 Failure Screenshot:
⏱️ Duration: 334.92s
❌ Error:
fixturefunc = <function verify_cbe_save_enabled at 0x7f2166561630>
request = <FixtureRequest for <Function test_cbe01_cbe_service_chains_sanity[text_position]>>
kwargs = {'browser': <selenium.webdriver.remote.webdriver.WebDriver (session="3561a4b976001756f2527b8b72566a66")>}
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_autopilot_page.py:825: in verify_cbe_save_enabled
bs_fail_with_traceback(browser, verify_cbe_save_enabled, e)
helpers/common_helpers.py:815: in bs_fail_with_traceback
raise exception
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
browser = <selenium.webdriver.remote.webdriver.WebDriver (session="3561a4b976001756f2527b8b72566a66")>
@then('I verify that CBE save button is enabled')
def verify_cbe_save_enabled(browser):
try:
# Wait for CBE to process the change
time.sleep(5)
# Retry logic - backend needs time to enable button
max_attempts = 5
for attempt in range(max_attempts):
if not is_disabled(browser, AICHAT_SAVE_
📸 Failure Screenshot:
⏱️ Duration: 196.46s
❌ Error:
fixturefunc = <function aichat_select_clip at 0x7f2166561b40>
request = <FixtureRequest for <Function test_cbe03_replace_a_clip[uploaded_photo]>>
kwargs = {'browser': <selenium.webdriver.remote.webdriver.WebDriver (session="e583a837e60ef543048c71e6935b772b")>, 'prompt': 'uploaded_photo'}
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_autopilot_page.py:851: in aichat_select_clip
bs_fail_with_traceback(browser, aichat_select_clip, e)
helpers/common_helpers.py:815: in bs_fail_with_traceback
raise exception
tests/test_autopilot_page.py:848: in aichat_select_clip
do_hover_and_click_js(browser, AICHAT_MEDIA_RESULT_FIRST_JS, AICHAT_REPLACE_JS)
helpers/common_helpers.py:336: in do_hover_and_click_js
browser.execute_script(
venv/lib/python3.10/site-packages/selenium/webdriver/remote/webdriver.py:407: in execute_script
return self.execute(command, {"script": script, "args": converted_args})["value"]
venv/lib/python3.10/site-packages/selenium/webdriver/remote/webdriver.py:347: in execute
self.error_handler.check_response(response)
_ _ _ _ _ _ _ _ _ _ _ _ _
📸 Failure Screenshot:
⏱️ Duration: 373.62s
❌ Error:
fixturefunc = <function user_redirected_after_video_generation at 0x7f21665549d0>
request = <FixtureRequest for <Function test_cbe07_change_the_intro_for_the_amazon_product_video>>
kwargs = {'browser': <selenium.webdriver.remote.webdriver.WebDriver (session="1b27eade3b6a7e9ab004a22c13261919")>}
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_autopilot_page.py:400: in user_redirected_after_video_generation
bs_fail_with_traceback(browser, user_redirected_after_video_generation, e)
helpers/common_helpers.py:815: in bs_fail_with_traceback
raise exception
tests/test_autopilot_page.py:398: in user_redirected_after_video_generation
ai_generated_posts_in_planner(browser, 300)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
browser = <selenium.webdriver.remote.webdriver.WebDriver (session="1b27eade3b6a7e9ab004a22c13261919")>
waiting_time = 300
def ai_generated_posts_in_planner(browser, waiting_time: int):
"""
Verifies if AI posts are visible in Planner
waiting_time (int) = chosen value in seconds
"
📸 Failure Screenshot: