From b27945d04542801c9a782942867f5387ac6c7e54 Mon Sep 17 00:00:00 2001 From: Danilo Akamine Date: Tue, 28 Jan 2025 16:33:04 -0500 Subject: [PATCH] docs: remove duplicate reference (#34513) --- 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 ```