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 234734c commit 7d38fd9Copy full SHA for 7d38fd9
docs/sources/k6/next/javascript-api/k6-browser/frame/locator.md
@@ -49,8 +49,8 @@ export default async function () {
49
50
await page.goto('https://quickpizza.grafana.com');
51
52
- // Get frame
53
- const frame = page.frames()[1];
+ // Get the mainframe of the page
+ const frame = page.mainFrame();
54
55
// Create a locator with text filtering options
56
const submitButton = frame.locator('button', { hasText: 'Pizza, Please!' });
0 commit comments