2024-04-15 06:23:56 +00:00
|
|
|
---
|
|
|
|
hide_table_of_contents: true
|
|
|
|
---
|
|
|
|
|
2024-04-11 20:02:24 +00:00
|
|
|
# Puppeteer
|
|
|
|
|
|
|
|
[![build](https://github.com/puppeteer/puppeteer/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/puppeteer/puppeteer/actions/workflows/ci.yml)
|
|
|
|
[![npm puppeteer package](https://img.shields.io/npm/v/puppeteer.svg)](https://npmjs.org/package/puppeteer)
|
|
|
|
|
|
|
|
<img src="https://user-images.githubusercontent.com/10379601/29446482-04f7036a-841f-11e7-9872-91d1fc2ea683.png" height="200" align="right"/>
|
|
|
|
|
2024-04-12 11:24:30 +00:00
|
|
|
> Puppeteer is a Node.js library which provides a high-level API to control
|
2024-05-29 09:14:12 +00:00
|
|
|
> Chrome or Firefox over the
|
|
|
|
> [DevTools Protocol](https://chromedevtools.github.io/devtools-protocol/) or [WebDriver BiDi](https://pptr.dev/webdriver-bidi).
|
|
|
|
> Puppeteer runs in the headless (no visible UI) by default
|
|
|
|
> but can be configured to run in a visible ("headful") browser.
|
2024-04-11 20:02:24 +00:00
|
|
|
|
2024-04-12 11:24:30 +00:00
|
|
|
## [Get started](https://pptr.dev/docs) | [API](https://pptr.dev/api) | [FAQ](https://pptr.dev/faq) | [Contributing](https://pptr.dev/contributing) | [Troubleshooting](https://pptr.dev/troubleshooting)
|
2024-04-11 20:02:24 +00:00
|
|
|
|
2024-05-29 09:14:12 +00:00
|
|
|
## Installation
|
|
|
|
|
|
|
|
```bash npm2yarn
|
|
|
|
npm i puppeteer # Downloads compatible Chrome during installation.
|
|
|
|
npm i puppeteer-core # Alternatively, install as a library, without downloading Chrome.
|
|
|
|
```
|
|
|
|
|
2024-04-11 20:02:24 +00:00
|
|
|
## Example
|
|
|
|
|
|
|
|
```ts
|
2024-05-29 09:14:12 +00:00
|
|
|
import puppeteer from 'puppeteer'; // or import puppeteer from 'puppeteer-core';
|
2024-04-11 20:02:24 +00:00
|
|
|
|
2024-05-29 09:14:12 +00:00
|
|
|
// Launch the browser and open a new blank page
|
|
|
|
const browser = await puppeteer.launch();
|
|
|
|
const page = await browser.newPage();
|
2024-04-11 20:02:24 +00:00
|
|
|
|
2024-05-29 09:14:12 +00:00
|
|
|
// Navigate the page to a URL.
|
|
|
|
await page.goto('https://developer.chrome.com/');
|
2024-04-11 20:02:24 +00:00
|
|
|
|
2024-05-29 09:14:12 +00:00
|
|
|
// Set screen size.
|
|
|
|
await page.setViewport({width: 1080, height: 1024});
|
2024-04-11 20:02:24 +00:00
|
|
|
|
2024-05-29 09:14:12 +00:00
|
|
|
// Type into search box.
|
|
|
|
await page.type('.devsite-search-field', 'automate beyond recorder');
|
2024-04-11 20:02:24 +00:00
|
|
|
|
2024-05-29 09:14:12 +00:00
|
|
|
// Wait and click on first result.
|
|
|
|
const searchResultSelector = '.devsite-result-item-link';
|
|
|
|
await page.waitForSelector(searchResultSelector);
|
|
|
|
await page.click(searchResultSelector);
|
2024-04-11 20:02:24 +00:00
|
|
|
|
2024-05-29 09:14:12 +00:00
|
|
|
// Locate the full title with a unique string.
|
|
|
|
const textSelector = await page.waitForSelector('text/Customize and automate');
|
|
|
|
const fullTitle = await textSelector?.evaluate(el => el.textContent);
|
2024-04-11 20:02:24 +00:00
|
|
|
|
2024-05-29 09:14:12 +00:00
|
|
|
// Print the full title.
|
|
|
|
console.log('The title of this blog post is "%s".', fullTitle);
|
2024-04-11 20:02:24 +00:00
|
|
|
|
2024-05-29 09:14:12 +00:00
|
|
|
await browser.close();
|
2024-04-11 20:02:24 +00:00
|
|
|
```
|