← Back to All Reports
TESTS FAILED (27%)
Job Name
ai_generation_prod
Pipeline ID
Job ID
#4314558
Branch
master
Commit
N/A
Executed At
2026-07-17T02:49:47.893177
4
Passed
11
Failed
0
Skipped

Test Results (15 tests)

test_ai03_autopilot_e2e_path_with_ai_topics_post_in_planner_verification
passed
⏱️ Duration: 699.74s
test_ai05_video_generation_started_from_chatgpt_store
failed
⏱️ Duration: 319.65s
❌ Error:
fixturefunc = <function skip_the_educational_video at 0x7f7e62e91630> request = <FixtureRequest for <Function test_ai05_video_generation_started_from_chatgpt_store>> kwargs = {'browser': <selenium.webdriver.remote.webdriver.WebDriver (session="19fbe9e0278b90c166f3e4eb7a7826d0")>} 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:365: in skip_the_educational_video bs_fail_with_traceback(browser, skip_the_educational_video, e) helpers/common_helpers.py:815: in bs_fail_with_traceback raise exception tests/test_autopilot_page.py:362: in skip_the_educational_video do_click(browser, AI_GENERATOR_SKIP_VIDEO) helpers/common_helpers.py:201: in do_click EC.element_to_be_clickable(by_locator)).click() venv/lib/python3.10/site-packages/selenium/webdriver/remote/webelement.py:93: in click self._execute(Command.CLICK_ELEMENT) venv/lib/python3.10/site-packages/selenium/webdriver/remote/webelement.py:394: in _execute return self._parent.execute(command, params) venv/lib/python3.10/site-packages/selenium/webdriver/remote/webdriver.py:347: in execut
📸 Failure Screenshot:
Test failure screenshot
test_ai06_free_user_can_generate_single_ai_post_from_planner
failed
⏱️ Duration: 291.95s
❌ Error:
fixturefunc = <function add_new_ai_post_today at 0x7f7e62c84e50> request = <FixtureRequest for <Function test_ai06_free_user_can_generate_single_ai_post_from_planner>> kwargs = {'browser': <selenium.webdriver.remote.webdriver.WebDriver (session="3352dee0c1ca61f1a82ddd8f9a477dd1")>} 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_planner_page.py:981: in add_new_ai_post_today bs_fail_with_traceback(browser, add_new_ai_post_today, e) helpers/common_helpers.py:815: in bs_fail_with_traceback raise exception tests/test_planner_page.py:976: in add_new_ai_post_today open_dropdown_for_today_in_planner(browser) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ browser = <selenium.webdriver.remote.webdriver.WebDriver (session="3352dee0c1ca61f1a82ddd8f9a477dd1")> def open_dropdown_for_today_in_planner(browser): """ Opens dropdown on current day from planner """ time.sleep(5) > assert is_visible(browser, MY_CAL_CURRENT_DAY) E AssertionError pages/planner_page.py:236: AssertionError
📸 Failure Screenshot:
Test failure screenshot
test_ai07_free_user_tries_to_generate_the_second_batch_with_another_brand
failed
⏱️ Duration: 318.80s
❌ Error:
fixturefunc = <function ai_provide_website_or_topic at 0x7f7e62e3b520> request = <FixtureRequest for <Function test_ai07_free_user_tries_to_generate_the_second_batch_with_another_brand>> kwargs = {'browser': <selenium.webdriver.remote.webdriver.WebDriver (session="38883ca05341ee9c2f56adf36b441ea6")>, 'input1': 'sample_ai_website'} 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:205: in ai_provide_website_or_topic bs_fail_with_traceback(browser, ai_provide_website_or_topic, e) helpers/common_helpers.py:815: in bs_fail_with_traceback raise exception tests/test_autopilot_page.py:203: in ai_provide_website_or_topic provide_web_or_topic_autopilot(browser, inputs[input1]) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ browser = <selenium.webdriver.remote.webdriver.WebDriver (session="38883ca05341ee9c2f56adf36b441ea6")> ai_input = 'promoai.io' def provide_web_or_topic_autopilot(browser, ai_input: str): """ ai_input (str): chosen website or topic from testdata.py actual: sample_ai_topic
📸 Failure Screenshot:
Test failure screenshot
test_ai08_free_user_generates_a_video_for_the_amazon_product_with_a_store
failed
⏱️ Duration: 280.24s
❌ Error:
fixturefunc = <function ai_provide_website_or_topic at 0x7f7e62e3b520> request = <FixtureRequest for <Function test_ai08_free_user_generates_a_video_for_the_amazon_product_with_a_store>> kwargs = {'browser': <selenium.webdriver.remote.webdriver.WebDriver (session="ef3d5748a48b6955cff35c1a1627a0ff")>, 'input1': 'standard_amazon_product'} 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:205: in ai_provide_website_or_topic bs_fail_with_traceback(browser, ai_provide_website_or_topic, e) helpers/common_helpers.py:815: in bs_fail_with_traceback raise exception tests/test_autopilot_page.py:203: in ai_provide_website_or_topic provide_web_or_topic_autopilot(browser, inputs[input1]) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ browser = <selenium.webdriver.remote.webdriver.WebDriver (session="ef3d5748a48b6955cff35c1a1627a0ff")> ai_input = 'amazon.com/dp/B0BRH2RNHX' def provide_web_or_topic_autopilot(browser, ai_input: str): """ ai_input (str): chosen website or topic from testdata.py act
📸 Failure Screenshot:
Test failure screenshot
test_ai10_free_user_can_generate_the_second_batch_with_topic
passed
⏱️ Duration: 1177.24s
test_ai12_new_user_tries_ai_generation_from_homepage_without_a_website
failed
⏱️ Duration: 623.91s
❌ Error:
fixturefunc = <function add_brand_color at 0x7f7e62e3bd90> request = <FixtureRequest for <Function test_ai12_new_user_tries_ai_generation_from_homepage_without_a_website>> kwargs = {'browser': <selenium.webdriver.remote.webdriver.WebDriver (session="72a67839ef474d13f61007b48c47fbb4")>} 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:246: in add_brand_color bs_fail_with_traceback(browser, add_brand_color, e) helpers/common_helpers.py:815: in bs_fail_with_traceback raise exception tests/test_autopilot_page.py:244: in add_brand_color add_color1(browser, "#831B1B") _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ browser = <selenium.webdriver.remote.webdriver.WebDriver (session="72a67839ef474d13f61007b48c47fbb4")> color = '#831B1B' def add_color1(browser, color: str): """ Clicks the first add color button """ > assert is_visible(browser, AI_ONBOARDING_ADD_COLOR_1, 10) E AssertionError pages/autopilot_page.py:184: AssertionError
📸 Failure Screenshot:
Test failure screenshot
test_ai01_free_user_can_generate_30_ai_posts_and_cant_render_a_video
passed
⏱️ Duration: 1090.96s
test_ai09p_free_user_generates_a_video_based_on_amazon_listing_that_contains_videos[amazon_product_with_videos]
failed
⏱️ Duration: 217.30s
❌ Error:
fixturefunc = <function ai_provide_website_or_topic at 0x7f7e2df6ee60> request = <FixtureRequest for <Function test_ai09p_free_user_generates_a_video_based_on_amazon_listing_that_contains_videos[amazon_product_with_videos]>> kwargs = {'browser': <selenium.webdriver.remote.webdriver.WebDriver (session="cceb1c855749a06587319d93118a1d7d")>, 'input1': 'amazon_product_with_videos'} 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:205: in ai_provide_website_or_topic bs_fail_with_traceback(browser, ai_provide_website_or_topic, e) helpers/common_helpers.py:815: in bs_fail_with_traceback raise exception tests/test_autopilot_page.py:203: in ai_provide_website_or_topic provide_web_or_topic_autopilot(browser, inputs[input1]) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ browser = <selenium.webdriver.remote.webdriver.WebDriver (session="cceb1c855749a06587319d93118a1d7d")> ai_input = 'https://www.amazon.com/Bed-Head-Curls-Check-Diffuser/dp/B00JXQ06X8/?_encoding=UTF8&pd_rd_w=I7Piv&content-id=amzn1.sym...X10HK9YCMP7JD0FQRF
📸 Failure Screenshot:
Test failure screenshot
test_ai09p_free_user_generates_a_video_based_on_amazon_listing_that_contains_videos[amazon_product_with_videos2]
failed
⏱️ Duration: 299.04s
❌ Error:
fixturefunc = <function ai_provide_website_or_topic at 0x7f7e2df6ee60> request = <FixtureRequest for <Function test_ai09p_free_user_generates_a_video_based_on_amazon_listing_that_contains_videos[amazon_product_with_videos2]>> kwargs = {'browser': <selenium.webdriver.remote.webdriver.WebDriver (session="076207d52817b269587d04e7e47ed4b8")>, 'input1': 'amazon_product_with_videos2'} 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:205: in ai_provide_website_or_topic bs_fail_with_traceback(browser, ai_provide_website_or_topic, e) helpers/common_helpers.py:815: in bs_fail_with_traceback raise exception tests/test_autopilot_page.py:203: in ai_provide_website_or_topic provide_web_or_topic_autopilot(browser, inputs[input1]) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ browser = <selenium.webdriver.remote.webdriver.WebDriver (session="076207d52817b269587d04e7e47ed4b8")> ai_input = 'https://www.amazon.com/Fitbit-Advanced-Smartwatch-Platinum-Included/dp/B0B4N7LSM6/?_encoding=UTF8&pd_rd_w=YfrMP&conte...pf_rd_r=43F3MGA4
📸 Failure Screenshot:
Test failure screenshot
test_ai09p_free_user_generates_a_video_based_on_amazon_listing_that_contains_videos[amazon_product_with_videos3]
failed
⏱️ Duration: 227.63s
❌ Error:
fixturefunc = <function ai_provide_website_or_topic at 0x7f7e2df6ee60> request = <FixtureRequest for <Function test_ai09p_free_user_generates_a_video_based_on_amazon_listing_that_contains_videos[amazon_product_with_videos3]>> kwargs = {'browser': <selenium.webdriver.remote.webdriver.WebDriver (session="82ba0458a42fe6b61636ee5b35e9093e")>, 'input1': 'amazon_product_with_videos3'} 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:205: in ai_provide_website_or_topic bs_fail_with_traceback(browser, ai_provide_website_or_topic, e) helpers/common_helpers.py:815: in bs_fail_with_traceback raise exception tests/test_autopilot_page.py:203: in ai_provide_website_or_topic provide_web_or_topic_autopilot(browser, inputs[input1]) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ browser = <selenium.webdriver.remote.webdriver.WebDriver (session="82ba0458a42fe6b61636ee5b35e9093e")> ai_input = 'https://www.amazon.com/ZELUS-Weighted-Reflective-Strength-Weightlifting/dp/B07518RBH2/?_encoding=UTF8&pd_rd_w=sOKGv&c...T4C1GZ8K57TB4CM4
📸 Failure Screenshot:
Test failure screenshot
test_ai11_new_user_tries_ai_generation_from_homepage__release
failed
⏱️ Duration: 536.55s
❌ Error:
fixturefunc = <function skip_the_educational_video at 0x7f7e2dfc0f70> request = <FixtureRequest for <Function test_ai11_new_user_tries_ai_generation_from_homepage__release>> kwargs = {'browser': <selenium.webdriver.remote.webdriver.WebDriver (session="dfcc93c23527fc6a604e8bd20f73c668")>} 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:365: in skip_the_educational_video bs_fail_with_traceback(browser, skip_the_educational_video, e) helpers/common_helpers.py:815: in bs_fail_with_traceback raise exception _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ browser = <selenium.webdriver.remote.webdriver.WebDriver (session="dfcc93c23527fc6a604e8bd20f73c668")> @when('I click the skip button') def skip_the_educational_video(browser): try: assert is_visible(browser, AI_GENERATOR_SKIP_VIDEO) do_click(browser, AI_GENERATOR_SKIP_VIDEO) > assert is_invisible(browser, AI_GENERATOR_SKIP_VIDEO) E assert False E + where False = is_invisible(<selenium.webdriver
📸 Failure Screenshot:
Test failure screenshot
test_ai13_new_user_tries_ai_generation_from_homepage_with_custom_dates__release
failed
⏱️ Duration: 300.17s
❌ Error:
fixturefunc = <function ai_fetched_assets at 0x7f7e2df6f520> request = <FixtureRequest for <Function test_ai13_new_user_tries_ai_generation_from_homepage_with_custom_dates__release>> kwargs = {'browser': <selenium.webdriver.remote.webdriver.WebDriver (session="e74b61ab770912d43d75449296656d5a")>} 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:238: in ai_fetched_assets bs_fail_with_traceback(browser, ai_fetched_assets, e) helpers/common_helpers.py:815: in bs_fail_with_traceback raise exception tests/test_autopilot_page.py:236: in ai_fetched_assets assets_fetched_ai(browser, PROMO_BUSINESS_NAME_FETCHED, 3) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ browser = <selenium.webdriver.remote.webdriver.WebDriver (session="e74b61ab770912d43d75449296656d5a")> business_name = ('xpath', '//input[contains(@value, "Promo.com")]') number_colors = 3 def assets_fetched_ai(browser, business_name: tuple, number_colors: int): """ First verifies that used is redirected to the 2nd step of the onboarding
📸 Failure Screenshot:
Test failure screenshot
test_ai14_new_user_tries_ai_generation_from_homepage_for_amazon_product
failed
⏱️ Duration: 941.84s
❌ Error:
fixturefunc = <function user_redirected_after_video_generation at 0x7f7e2dfc1630> request = <FixtureRequest for <Function test_ai14_new_user_tries_ai_generation_from_homepage_for_amazon_product>> kwargs = {'browser': <selenium.webdriver.remote.webdriver.WebDriver (session="0a80e2728c73170b18aef97573903667")>} 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="0a80e2728c73170b18aef97573903667")> 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 se
📸 Failure Screenshot:
Test failure screenshot
test_ai15_new_user_tries_ai_generation_from_homepage_for_topic
passed
⏱️ Duration: 949.95s