From 667696a360a02cc99c95b1910634fa626f14d5c2 Mon Sep 17 00:00:00 2001 From: Danilo Akamine Date: Mon, 27 Jan 2025 20:24:18 -0500 Subject: [PATCH] docs: remove duplicate reference --- docs/src/auth.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/auth.md b/docs/src/auth.md index a070d2d395..929e0ee78d 100644 --- a/docs/src/auth.md +++ b/docs/src/auth.md @@ -232,7 +232,7 @@ await page.goto('https://github.com/login') # Interact with login form await page.get_by_label("Username or email address").fill("username") await page.get_by_label("Password").fill("password") -await page.page.get_by_role("button", name="Sign in").click() +await page.get_by_role("button", name="Sign in").click() # Continue with the test ```