Getting Started with Puppeteer
Learn about Puppeteer essentials: PWA testing, HAR files, puppeteer-core, and asynchronous handling with promises.
We'll cover the following...
PWA testing
Like the Playwright framework, Puppeteer also drives its automation through the Browser object, which then drills down into the multiple BrowserContext sessions that can operate on multiple pages, extensions, and frames.
Since Google is the leader in PWAs and was the first technology provider to launch such application types, within this framework, we’ll be able to use built-in methods to test such ...
Ask