Node.js API for Chrome
Go to file
Andrey Lushnikov 67932b87c1 Drop the chrome-remote-interface dependency
This patch drops the chrome-remote-interface dependency and
introduces Connection class which handles all the communication
with remote target.

Closes #3
2017-06-14 15:45:59 -07:00
docs Rename page.size() and page.setSize() into page.viewportSize() 2017-06-14 07:41:26 -07:00
examples Rename page.size() and page.setSize() into page.viewportSize() 2017-06-14 07:41:26 -07:00
lib Drop the chrome-remote-interface dependency 2017-06-14 15:45:59 -07:00
phantom_shim Rename page.size() and page.setSize() into page.viewportSize() 2017-06-14 07:41:26 -07:00
test Await promises returned from the inPageCallback 2017-06-14 08:21:56 -07:00
third_party/phantomjs Consolidate phantom shim code in the phantom-shim folder 2017-06-14 02:27:19 -07:00
utils Introduce Eslint to validate style 2017-06-11 01:32:59 -07:00
.eslintignore Introduce Eslint to validate style 2017-06-11 01:32:59 -07:00
.eslintrc.js Introduce Eslint to validate style 2017-06-11 01:32:59 -07:00
.gitignore Puppeteer: staging commit. 2017-05-11 00:06:41 -07:00
CONTRIBUTING.md Puppeteer: staging commit. 2017-05-11 00:06:41 -07:00
index.js Slight code restructuring 2017-05-14 23:28:00 -07:00
install.js Introduce Eslint to validate style 2017-06-11 01:32:59 -07:00
LICENSE Initial commit 2017-05-09 15:16:13 -07:00
package.json Drop the chrome-remote-interface dependency 2017-06-14 15:45:59 -07:00
README.md Add minimal test framework 2017-05-12 16:38:07 -07:00

Status

Test results on Mac OS X in headless mode:

  111 passed
   20 failed as expected
    1 skipped
   49 unsupported

Installing

npm i
npm link # this adds puppeteer to $PATH

Run

# run phantomjs script
puppeteer third_party/phantomjs/examples/colorwheel.js

# run 'headful'
puppeteer --no-headless third_party/phantomjs/examples/colorwheel.js

# run puppeteer example
node examples/screenshot.js

Tests

Run all tests:

npm test

Run phantom.js tests using puppeteer:

npm run test-phantom

Run puppeteer tests:

npm run test-puppeteer