This is an automated email from the ASF dual-hosted git repository.

sbp pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tooling-trusted-releases.git

commit cc643b6716cac0c344e01f4b5e125d50557f4773
Author: Sean B. Palmer <[email protected]>
AuthorDate: Wed Dec 10 20:16:15 2025 +0000

    Fix root tests to search for a button to log in
---
 tests/e2e/root/test_get.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tests/e2e/root/test_get.py b/tests/e2e/root/test_get.py
index 01311fa..3cdfc8b 100644
--- a/tests/e2e/root/test_get.py
+++ b/tests/e2e/root/test_get.py
@@ -18,9 +18,9 @@
 from playwright.sync_api import Page, expect
 
 
-def test_index_has_login_link(page_index: Page) -> None:
-    login_link = page_index.get_by_role("link", name="Log in")
-    expect(login_link).to_be_visible()
+def test_index_has_login_button(page_index: Page) -> None:
+    login_button = page_index.get_by_role("button", name="Log in")
+    expect(login_button).to_be_visible()
 
 
 def test_index_loads(page_index: Page) -> None:


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to