← Back to All Reports
TESTS FAILED (70%)
Job Name
publisher2_prod
Pipeline ID
Job ID
#4311604
Branch
master
Commit
N/A
Executed At
2026-07-15T05:16:39.155924
7
Passed
3
Failed
0
Skipped

Test Results (10 tests)

test_pub01_verify_publish_and_schedule_for_yt_shorts_and_li_posts
passed
⏱️ Duration: 776.01s
test_pub02_verify_publish_yt_longer_60_sec
passed
⏱️ Duration: 684.56s
test_pub03_verify_publish_tiktok
failed
⏱️ Duration: 585.28s
❌ Error:
fixturefunc = <function publish_tiktok_private at 0x7f1aa70a6c20> request = <FixtureRequest for <Function test_pub03_verify_publish_tiktok>> kwargs = {'browser': <selenium.webdriver.remote.webdriver.WebDriver (session="e481bd75da40226a7d3c43580fa7cffc")>} 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:219: in publish_tiktok_private bs_fail_with_traceback(browser, publish_tiktok_private, e) helpers/common_helpers.py:815: in bs_fail_with_traceback raise exception tests/test_publisher_page.py:217: in publish_tiktok_private publish_tiktok_as_private(browser) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ browser = <selenium.webdriver.remote.webdriver.WebDriver (session="e481bd75da40226a7d3c43580fa7cffc")> def publish_tiktok_as_private(browser): """ Publishes one private post to TikTok Social accounts are always connected, this test doesn't cover the connection flow """ time.sleep(2) add_video_to_post(browser) do_send_keys(browser, ADD_TEXT_TO_TIKTOK_
📸 Failure Screenshot:
Test failure screenshot
test_pub04_verify_reschedule_yt_shorts_and_li_posts
failed
⏱️ Duration: 387.69s
❌ Error:
fixturefunc = <function logged_in_new_shorter_social at 0x7f1aa707a200> request = <FixtureRequest for <Function test_pub04_verify_reschedule_yt_shorts_and_li_posts>> kwargs = {'browser': <selenium.webdriver.remote.webdriver.WebDriver (session="4fd5cf9bac2496729087648e5b8910eb")>} 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:524: in logged_in_new_shorter_social bs_fail_with_traceback(browser, logged_in_new_shorter_social, e) helpers/common_helpers.py:815: in bs_fail_with_traceback raise exception tests/test_publisher_page.py:522: in logged_in_new_shorter_social user_logs_in(browser, email_socials, fullname) pages/login_page.py:215: in user_logs_in check_correct_username(browser, correct_username) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ browser = <selenium.webdriver.remote.webdriver.WebDriver (session="4fd5cf9bac2496729087648e5b8910eb")> correct_username = 'Automate Promo' def check_correct_username(browser, correct_username): """ Checks if user is logged correctly - checks
📸 Failure Screenshot:
Test failure screenshot
test_pub05_verify_post_duplication_and_deletion
passed
⏱️ Duration: 601.64s
test_pub06_verify_planner_functionalities_on_mobile
passed
⏱️ Duration: 793.30s
test_pub08_verify_external_share_of_regular_scheduled_post
passed
⏱️ Duration: 657.32s
test_pub09_download_a_file_from_planner_preview
passed
⏱️ Duration: 330.93s
test_pub11_create_a_new_aspect_ratio_for_an_ai_post_in_the_publisher
failed
⏱️ Duration: 379.91s
❌ Error:
browser = <selenium.webdriver.remote.webdriver.WebDriver (session="c4cbb35f0d177b942b681c2824469726")> orientation = 'wide' @then(parsers.parse('I verify in publisher that {orientation} ratio is not created')) def verify_ratio_not_created(browser, orientation): ratios = { "wide": PUBLISHER_ADD_WIDE_RATIO, "square": PUBLISHER_ADD_SQUARE_RATIO, "vertical": PUBLISHER_ADD_VERTICAL_RATIO } try: > assert is_visible(browser, ratios.get(orientation)) E assert False E + where False = is_visible(<selenium.webdriver.remote.webdriver.WebDriver (session="c4cbb35f0d177b942b681c2824469726")>, ('xpath', '//*[@data-qaid="pub-add-video-ratio-wide-0"]')) E + where ('xpath', '//*[@data-qaid="pub-add-video-ratio-wide-0"]') = <built-in method get of dict object at 0x7f1aa4c8a540>('wide') E + where <built-in method get of dict object at 0x7f1aa4c8a540> = {'square': ('xpath', '//*[data-qaid="pub-add-video-ratio-square-0"]'), 'vertical': ('xpath', '//*[@data-qaid="pub-add-video-ratio-vertical-0"]'), 'wide': ('xpath', '//*[@data-qaid="pub-add-video-ratio-wide-0"]')}.get tests/test_publisher_page.py:564: AssertionError During handling of the above exception, another exception occurred: fixturefunc = <function verify_ratio_not_created at 0x7f1aa707a8c0> request = <FixtureRequest for <Function test_pub11_create_a_new_aspect_ratio_for_an_ai_post_in_the_publisher>> kwargs = {'browser': <selenium.webdriver.remote.webdriver.WebDriver (session="c4cbb35f0d177b942b681c2824469726")>, 'orientation': 'wide'} 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:
📸 Failure Screenshot:
Test failure screenshot
test_pub13_new_user_verifies_bulk_delete_action_in_the_planner
passed
⏱️ Duration: 356.32s