Bug 1931425 - Limit how often moz-label's #setStyles runs r=reusable-components-revie...
[gecko.git] / remote / test / puppeteer / examples / README.md
blob92f034451d717f3e146f5c8daa9f542e57d4c109
1 # Puppeteer: Examples
3 This is the official set of Puppeteer examples. For a list of curated examples and use-cases,
4 including third-party ones, see [pptr.dev/examples](https://pptr.dev/examples).
6 ## Run
8 Check out this repository and and install the package dependencies, using the following command:
10 ```bash
11 npm install
12 ```
14 Then build a version of Puppeteer to be used with the examples:
16 ```bash
17 npm run build
18 ```
20 After both commands have succeeded, run an individual example like so:
22 ```bash
23 NODE_PATH=../ node examples/search.js
24 ```