trisquel-icecat/icecat/remote/test/puppeteer
2025-10-06 02:35:48 -06:00
..
examples icecat: add release 140.3.1-1gnu1 2025-10-06 02:35:48 -06:00
packages icecat: add release 140.3.1-1gnu1 2025-10-06 02:35:48 -06:00
test icecat: add release 140.3.1-1gnu1 2025-10-06 02:35:48 -06:00
test-d icecat: add release 140.3.1-1gnu1 2025-10-06 02:35:48 -06:00
tools icecat: add release 140.3.1-1gnu1 2025-10-06 02:35:48 -06:00
.editorconfig icecat: initial release for Trisquel 12.0, Ecne 2025-07-17 09:32:21 -06:00
.mocharc.cjs icecat: add release 140.3.1-1gnu1 2025-10-06 02:35:48 -06:00
.npmrc icecat: initial release for Trisquel 12.0, Ecne 2025-07-17 09:32:21 -06:00
.nvmrc icecat: add release 140.3.1-1gnu1 2025-10-06 02:35:48 -06:00
.prettierignore icecat: initial release for Trisquel 12.0, Ecne 2025-07-17 09:32:21 -06:00
.prettierrc.cjs icecat: add release 140.3.1-1gnu1 2025-10-06 02:35:48 -06:00
.release-please-manifest.json icecat: add release 140.3.1-1gnu1 2025-10-06 02:35:48 -06:00
CHANGELOG.md icecat: add release 140.3.1-1gnu1 2025-10-06 02:35:48 -06:00
eslint.config.mjs icecat: add release 140.3.1-1gnu1 2025-10-06 02:35:48 -06:00
eslint.types.config.mjs icecat: add release 140.3.1-1gnu1 2025-10-06 02:35:48 -06:00
Herebyfile.mjs icecat: add release 140.3.1-1gnu1 2025-10-06 02:35:48 -06:00
json-mocha-reporter.js icecat: initial release for Trisquel 12.0, Ecne 2025-07-17 09:32:21 -06:00
LICENSE icecat: initial release for Trisquel 12.0, Ecne 2025-07-17 09:32:21 -06:00
moz.yaml icecat: add release 140.3.1-1gnu1 2025-10-06 02:35:48 -06:00
package.json icecat: add release 140.3.1-1gnu1 2025-10-06 02:35:48 -06:00
puppeteer.config.cjs icecat: add release 140.3.1-1gnu1 2025-10-06 02:35:48 -06:00
README.md icecat: add release 140.3.1-1gnu1 2025-10-06 02:35:48 -06:00
release-please-config.json icecat: initial release for Trisquel 12.0, Ecne 2025-07-17 09:32:21 -06:00
SECURITY.md icecat: initial release for Trisquel 12.0, Ecne 2025-07-17 09:32:21 -06:00
tsconfig.base.json icecat: add release 140.3.1-1gnu1 2025-10-06 02:35:48 -06:00
tsdoc.json icecat: initial release for Trisquel 12.0, Ecne 2025-07-17 09:32:21 -06:00
versions.json icecat: add release 140.3.1-1gnu1 2025-10-06 02:35:48 -06:00

Puppeteer

build npm puppeteer package

Puppeteer is a JavaScript library which provides a high-level API to control Chrome or IceCat over the DevTools Protocol or WebDriver BiDi. Puppeteer runs in the headless (no visible UI) by default

Get started | API | FAQ | Contributing | Troubleshooting

Installation

npm i puppeteer # Downloads compatible Chrome during installation.
npm i puppeteer-core # Alternatively, install as a library, without downloading Chrome.

Example

import puppeteer from 'puppeteer';
// Or import puppeteer from 'puppeteer-core';

// Launch the browser and open a new blank page
const browser = await puppeteer.launch();
const page = await browser.newPage();

// Navigate the page to a URL.
await page.goto('https://developer.chrome.com/');

// Set screen size.
await page.setViewport({width: 1080, height: 1024});

// Type into search box.
await page.locator('.devsite-search-field').fill('automate beyond recorder');

// Wait and click on first result.
await page.locator('.devsite-result-item-link').click();

// Locate the full title with a unique string.
const textSelector = await page
  .locator('text/Customize and automate')
  .waitHandle();
const fullTitle = await textSelector?.evaluate(el => el.textContent);

// Print the full title.
console.log('The title of this blog post is "%s".', fullTitle);

await browser.close();