We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97d546d commit 336f927Copy full SHA for 336f927
packages/docs/e2e/homepage.spec.ts
@@ -24,8 +24,8 @@ test.describe("Homepage", () => {
24
test("navigates to getting started guide", async ({ page }) => {
25
await page.goto("/");
26
27
- // Find and click the Getting started link
28
- const guideLink = page.getByRole("link", { name: /getting started/i });
+ // Find and click the Getting started link (using first to handle multiple matches)
+ const guideLink = page.getByRole("link", { name: /getting started/i }).first();
29
await guideLink.click();
30
31
// Verify navigation occurred
0 commit comments