官网
Playwright Library | Playwright
const { chromium, firefox, webkit } = require('playwright');(async () => {const browser = await chromium.launch({executablePath:"D:/chrome-可配置/Chrome-bin/chrome.exe",//打开魔改的浏览器headless:false}); // Or 'firefox' or 'webkit'.const page = await browser.newPage();await page.goto('http://example.com');// other actions...// await browser.close();
})();