Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nondanee/puppeteer-electron

Use Puppeteer's API with Electron
https://github.com/nondanee/puppeteer-electron

electron puppeteer

Last synced: 17 days ago
JSON representation

Use Puppeteer's API with Electron

Awesome Lists containing this project

README

        

# Puppeteer-Electron

> A version of Puppeteer that use Electron instead of Chromium

⚠️ BEWARE: Experimental. Just for test. Can not work with all Puppeteer APIs.

## Motivation

In comparison with the full-featured Chromium browser (~108MB Mac, ~113MB Linux, ~141MB Win for ZIP package), A portable alternative ------ Electron is able to handle most daily tasks but has half of Chromium's size (~55MB Mac, ~63MB Linux, ~58MB Win for ZIP package)

## Usage

```javascript
const puppeteer = require('puppeteer-electron')

;(async () => {
const app = await puppeteer.launch({ headless: false }) // default is true
const pages = await app.pages()
const [page] = pages
await page.goto('https://bing.com')

setTimeout(async () => await app.close(), 5000)
})()
```

## Reference

- https://discuss.atom.io/t/solved-control-automate-an-electron-application-with-puppeteer/64126
- https://stackoverflow.com/questions/51847667/how-to-automate-electronjs-app
- https://github.com/peterdanis/electron-puppeteer-demo
- https://github.com/electron/electron/issues/3331
- https://github.com/electron/electron/issues/11515

## License

The MIT License