Skip to content

Commit

Permalink
fixup! 💚 Attempt to fix failing test for 'with-playwright'
Browse files Browse the repository at this point in the history
  • Loading branch information
zigarn committed May 23, 2024
1 parent fe5cebf commit 76bebb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion with-playwright/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const { chromium } = require("playwright-chromium");
});
const context = await browser.newContext();
const page = await context.newPage();
await page.goto("https://example.com/", { waitUntil: "networkidle2" });
await page.goto("https://example.com/", { waitUntil: "networkidle" });
await page.screenshot({ path: "test/example.png" });
await browser.close();
})();

0 comments on commit 76bebb8

Please sign in to comment.