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 38ac7c3 commit 956ef66Copy full SHA for 956ef66
playwright/example.spec.ts
@@ -0,0 +1,6 @@
1
+import { test, expect } from "@playwright/test";
2
+
3
+test("Example", async ({ page }) => {
4
+ await page.goto("");
5
+ expect(await page.getByRole("main").getByRole("link").all()).toHaveLength(22);
6
+});
0 commit comments