You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make an act flag that can parameterize the new tab behavior in the example below, such that the user can choose whether or not to switch to the newly opened tab.
await page.goto("https://playwright.dev");
await page.setContent(`
<html>
<body>
<a href="https://playwright.dev" target="_blank">Open Playwright</a>
</body>
</html>
`);
await page.act("Click on Open Playwright link");
The text was updated successfully, but these errors were encountered:
Make an
act
flag that can parameterize the new tab behavior in the example below, such that the user can choose whether or not to switch to the newly opened tab.The text was updated successfully, but these errors were encountered: