← Back to All Reports
TESTS FAILED (67%)
Job Name
web_general_prod
Pipeline ID
Job ID
#4401348
Branch
master
Commit
N/A
Executed At
2026-09-12T01:21:01.764950
4
Passed
2
Failed
0
Skipped

Test Results (6 tests)

test_w01_verify_utm_on_promo_url[chromium]
passed
⏱️ Duration: 0.97s
test_w02_verify_clicking_main_logo[chromium]
passed
⏱️ Duration: 39.23s
test_w21_verify_incorrect_change_of_password[chromium]
passed
⏱️ Duration: 13.33s
test_w22_verify_password_changes[chromium]
passed
⏱️ Duration: 17.95s
test_w26_promo_performance_tests[chromium]
failed
⏱️ Duration: 200.99s
❌ Error:
self = <tests.test_web_general.TestWebPhase1 object at 0x7fbb56a64250> main_page = <pages.main_page.MainPage object at 0x7fbb56cf9090> @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 0x7fbb56cf9090> 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/login: 6.01s pages/main_page.py:266: AssertionError
📸 Failure Screenshot:
Test failure screenshot
test_w27_verify_header_for_logged_and_not_logged[chromium]
failed
⏱️ Duration: 41.41s
❌ Error:
self = <tests.test_web_general.TestWebPhase1 object at 0x7fbb56a67b50> login_page = <pages.login_page.LoginPage object at 0x7fbb56a52b00> main_page = <pages.main_page.MainPage object at 0x7fbb56a52f80> pricing_page = <pages.pricing_page.PricingPage object at 0x7fbb56a532b0> base_url = 'https://promo.com' def test_w27_verify_header_for_logged_and_not_logged( self, login_page, main_page, pricing_page, base_url ): """ W27 Verify header for logged and not logged Pricing and PromoAI nav links should appear for guests and disappear once the user is authenticated. """ page = login_page.page # Unauthenticated: links should be present main_page.go_to_homepage(base_url) login_page.skip_cookies() main_page.verify_header_links_visible() page.goto(f"{base_url}/pricing") page.wait_for_load_state("domcontentloaded") main_page.verify_header_links_visible() # Log in login_page.login_directly(base_url, general_mail(), get_password()) # Authenticated: links should be gone page.goto(f"{base_url}/create") page.wait_for_load_state("domcontentloaded") main_page.verify_header_links_not_visible() > page.goto(f"{base_url}/templates") tests/test_web_general.py:235: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.10/dist-packages/playwright/sync_api/_generated.py:9875: in goto self._sync( /usr/local/lib/python3.10/dist-packages/playwright/_impl/_page.py:560: in goto return await self._main_frame.goto(**locals_to_params(locals())) /usr/local/lib/python3.10/dist-packages/playwright/_impl/_frame.py:156: in goto await self._channel.send( /usr/local/lib/python3.10/dist-packages/playwright/_impl/_connection.py:76: in send return await self._connection.wrap_api_call( _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
📸 Failure Screenshot:
Test failure screenshot