Update
All checks were successful
DevPlace CI / test (push) Successful in 5m32s

This commit is contained in:
retoor 2026-05-23 10:24:54 +02:00
parent cb12887b12
commit df5e8cdca0
2 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ def test_messages_header_visible(alice):
def test_messages_bell_icon(alice): def test_messages_bell_icon(alice):
page, _ = alice page, _ = alice
page.goto(f"{BASE_URL}/messages") page.goto(f"{BASE_URL}/messages")
bell = page.locator(".topnav-icon").first bell = page.locator(".topnav-icon[href='/notifications']")
assert bell.is_visible() assert bell.is_visible()

View File

@ -26,7 +26,7 @@ def test_notifications_navigation(alice):
def test_notifications_bell_visible(alice): def test_notifications_bell_visible(alice):
page, _ = alice page, _ = alice
page.goto(f"{BASE_URL}/feed") page.goto(f"{BASE_URL}/feed")
bell = page.locator(".topnav-icon").first bell = page.locator(".topnav-icon[href='/notifications']")
assert bell.is_visible() assert bell.is_visible()