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
* This is a basic Playwright script to get you started!
3
+
* To learn more about Browser checks and Playwright visit: https://www.checklyhq.com/docs/browser-checks
4
+
*/
5
+
6
+
// Create a Chromium browser
7
+
const{ chromium }=require('playwright')
8
+
9
+
// Checkly supports top level await, but we wrap your code in an async function so you can run it locally too.
10
+
asyncfunctionrun(){
11
+
constbrowser=awaitchromium.launch()
12
+
constpage=awaitbrowser.newPage()
13
+
14
+
// We visit the page. This waits for the 'load' event by default.
0 commit comments