Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

playwrigth await browser

const { firefox } = require('playwright');  // Or 'chromium' or 'webkit'.

(async () => {
  const browser = await firefox.launch();
  const page = await browser.newPage();
  await page.goto('https://example.com');
  await browser.close();
})();
Source by playwright.dev #
 
PREVIOUS NEXT
Tagged: #playwrigth #await #browser
ADD COMMENT
Topic
Name
1+3 =