← Back to All Reports
TESTS FAILED (0%)
Job Name
web_general_prod
Pipeline ID
Job ID
#4397984
Branch
master
Commit
N/A
Executed At
2026-09-09T09:47:58.822938
0
Passed
2
Failed
0
Skipped

Test Results (2 tests)

test_w02_verify_clicking_main_logo[chromium]
failed
⏱️ Duration: 86.08s
❌ Error:
self = <tests.test_web_general.TestWebPhase1 object at 0x7efffbcf3670> login_page = <pages.login_page.LoginPage object at 0x7efffbcf0e50> main_page = <pages.main_page.MainPage object at 0x7efffbd033a0> base_url = 'https://promo.com' @pytest.mark.skip_smoke def test_w02_verify_clicking_main_logo(self, login_page, main_page, base_url): """ W02 Verify clicking main logo Logo click should redirect to the Planner from: pricing page (not logged), My Account (logged), and Brand Manager (logged). """ page = login_page.page # Not logged — from pricing page login_page.go_to_home(base_url) login_page.skip_cookies() page.goto(f"{base_url}/pricing") page.wait_for_load_state("domcontentloaded") main_page.click_main_logo() main_page.verify_redirected_to_x(planner_page_title) # Log in login_page.login_directly(base_url, general_mail(), get_password()) # Logged — from My Account page.goto(f"{base_url}/settings") page.wait_for_load_state("domcontentloaded") main_page.click_main_logo() main_page.verify_redirected_to_x(planner_page_title) # Logged — from Brand Manager page.locator(MainPage.HEADER_DASHBOARD).wait_for(state="visible", timeout=15_000) page.locator(MainPage.HEADER_DASHBOARD).hover() page.locator(MainPage.HEADER_DASHBOARD_BRAND_MANAGER).wait_for( state="visible", timeout=10_000 ) page.locator(MainPage.HEADER_DASHBOARD_BRAND_MANAGER).click() page.wait_for_load_state("domcontentloaded") main_page.click_main_logo() > main_page.verify_redirected_to_x(planner_page_title) tests/test_web_general.py:119: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pages.main_page.MainPage object at 0x7efffbd033a0> expected_title = 'Promo Planner' def verify_redirected_to_x(self, e
📸 Failure Screenshot:
Test failure screenshot
test_w26_promo_performance_tests[chromium]
failed
⏱️ Duration: 80.71s
❌ Error:
self = <tests.test_web_general.TestWebPhase1 object at 0x7efffbcf05e0> main_page = <pages.main_page.MainPage object at 0x7efff96f5120> @pytest.mark.skip_testenv @pytest.mark.skip_smoke @pytest.mark.skip_sanity def test_w26_promo_performance_tests(self, main_page): """ W26 Promo Performance Tests Navigates to key prod URLs and asserts that server response and DOM processing times are within acceptable limits. """ > main_page.check_performance(_PERF_URLS) tests/test_web_general.py:206: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pages.main_page.MainPage object at 0x7efff96f5120> urls = ['https://promo.com/login', 'https://promo.com/tools/calendar/march', 'https://promo.com/templates', 'https://promo.com/go/base-lp-no-search', 'https://promo.com/go/base-lp-with-search'] def check_performance(self, urls: list): for url in urls: server_avg, dom_avg = self.measure_page_performance(url) print(f"{url}: server={server_avg}s, DOM={dom_avg}s") assert server_avg <= 3, f"Server response too slow for {url}: {server_avg}s" > assert dom_avg <= 5, f"DOM processing too slow for {url}: {dom_avg}s" E AssertionError: DOM processing too slow for https://promo.com/go/base-lp-no-search: 8.41s pages/main_page.py:266: AssertionError
📸 Failure Screenshot:
Test failure screenshot