← Back to All Reports
TESTS FAILED (0%)
Job Name
web_general_prod
Pipeline ID
Job ID
#4397144
Branch
master
Commit
N/A
Executed At
2026-09-09T01:28:50.880538
0
Passed
3
Failed
0
Skipped

Test Results (3 tests)

test_w02_verify_clicking_main_logo[chromium]
failed
⏱️ Duration: 56.75s
❌ Error:
self = <tests.test_web_general.TestWebPhase1 object at 0x7f81b035b700> login_page = <pages.login_page.LoginPage object at 0x7f81b035a6b0> main_page = <pages.main_page.MainPage object at 0x7f81b036b340> 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()) tests/test_web_general.py:102: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ pages/login_page.py:116: in login_directly self.page.wait_for_function( /usr/local/lib/python3.10/dist-packages/playwright/sync_api/_generated.py:12761: in wait_for_function self._sync( /usr/local/lib/python3.10/dist-packages/playwright/_impl/_page.py:1151: in wait_for_function return await self._main_frame.wait_for_function(**locals_to_params(locals())) /usr/local/lib/python3.10/dist-packages/playwright/_impl/_frame.py:940: in wait_for_function await self._channel.send("waitForFunction", self._timeout, params) /usr/local/lib/python3.10/dist-packages/playwright/_impl/_connection.py:76: in send return await self._connection.wrap_api_call( _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <playwright._impl._connection.Connection object at 0x7f81b03599c0> cb = <function Channel.send.<locals>.<lambda> at 0x7f81af761cf0> is_internal
📸 Failure Screenshot:
Test failure screenshot
test_w21_verify_incorrect_change_of_password[chromium]
failed
⏱️ Duration: 45.43s
❌ Error:
self = <tests.test_web_general.TestWebPhase1 object at 0x7f81b035ba90> login_page = <pages.login_page.LoginPage object at 0x7f81adf59cf0> my_account_page = <pages.my_account_page.MyAccountPage object at 0x7f81adf5a860> base_url = 'https://promo.com' @pytest.mark.skip_smoke def test_w21_verify_incorrect_change_of_password( self, login_page, my_account_page, base_url ): """ W21 Verify incorrect change of password Tries to save a new password where confirmation doesn't match; expects an error message in the settings iframe. """ > login_page.login_directly(base_url, general_mail(), get_password()) tests/test_web_general.py:130: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ pages/login_page.py:116: in login_directly self.page.wait_for_function( /usr/local/lib/python3.10/dist-packages/playwright/sync_api/_generated.py:12761: in wait_for_function self._sync( /usr/local/lib/python3.10/dist-packages/playwright/_impl/_page.py:1151: in wait_for_function return await self._main_frame.wait_for_function(**locals_to_params(locals())) /usr/local/lib/python3.10/dist-packages/playwright/_impl/_frame.py:940: in wait_for_function await self._channel.send("waitForFunction", self._timeout, params) /usr/local/lib/python3.10/dist-packages/playwright/_impl/_connection.py:76: in send return await self._connection.wrap_api_call( _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <playwright._impl._connection.Connection object at 0x7f81b03599c0> cb = <function Channel.send.<locals>.<lambda> at 0x7f81af8e52d0> is_internal = False, title = None async def wrap_api_call( self, cb: Callable[[], Any], is_internal: bool = False, title: str = None ) -> Any: if self._api_zone.get(): return await cb() task = asyncio.current_task(self._loop) parsed_st = _attach_api_call_information(
📸 Failure Screenshot:
Test failure screenshot
test_w26_promo_performance_tests[chromium]
failed
⏱️ Duration: 92.18s
❌ Error:
self = <tests.test_web_general.TestWebPhase1 object at 0x7f81b0358100> main_page = <pages.main_page.MainPage object at 0x7f81aca9c7f0> @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 0x7f81aca9c7f0> 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.54s pages/main_page.py:266: AssertionError
📸 Failure Screenshot:
Test failure screenshot