Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@nesk/puphpeteer

nesk8.4kMIT2.0.0

A Puppeteer bridge for PHP, supporting the entire API.

php, puppeteer, headless-chrome, testing, web, developer-tools, automation

readme

PuPHPeteer

PHP Version Composer Version Node Version NPM Version Build Status

A Puppeteer bridge for PHP, supporting the entire API. Based on Rialto, a package to manage Node resources from PHP.

Here are some examples borrowed from Puppeteer's documentation and adapted to PHP's syntax:

Example - navigating to https://example.com and saving a screenshot as example.png:

use Nesk\Puphpeteer\Puppeteer;

$puppeteer = new Puppeteer;
$browser = $puppeteer->launch();

$page = $browser->newPage();
$page->goto('https://example.com');
$page->screenshot(['path' => 'example.png']);

$browser->close();

Example - evaluate a script in the context of the page:

use Nesk\Puphpeteer\Puppeteer;
use Nesk\Rialto\Data\JsFunction;

$puppeteer = new Puppeteer;

$browser = $puppeteer->launch();
$page = $browser->newPage();
$page->goto('https://example.com');

// Get the "viewport" of the page, as reported by the page.
$dimensions = $page->evaluate(JsFunction::createWithBody("
    return {
        width: document.documentElement.clientWidth,
        height: document.documentElement.clientHeight,
        deviceScaleFactor: window.devicePixelRatio
    };
"));

printf('Dimensions: %s', print_r($dimensions, true));

$browser->close();

Requirements and installation

This package requires PHP >= 7.3 and Node >= 8.

Install it with these two command lines:

composer require nesk/puphpeteer
npm install @nesk/puphpeteer

Notable differences between PuPHPeteer and Puppeteer

Puppeteer's class must be instantiated

Instead of requiring Puppeteer:

const puppeteer = require('puppeteer');

You have to instantiate the Puppeteer class:

$puppeteer = new Puppeteer;

This will create a new Node process controlled by PHP.

You can also pass some options to the constructor, see Rialto's documentation. PuPHPeteer also extends these options:

[
    // Logs the output of Browser's console methods (console.log, console.debug, etc...) to the PHP logger
    'log_browser_console' => false,
]
<summary>⏱ Want to use some timeouts higher than 30 seconds in Puppeteer's API?</summary>

If you use some timeouts higher than 30 seconds, you will have to set a higher value for the read_timeout option (default: 35):

$puppeteer = new Puppeteer([
    'read_timeout' => 65, // In seconds
]);

$puppeteer->launch()->newPage()->goto($url, [
    'timeout' => 60000, // In milliseconds
]);

No need to use the await keyword

With PuPHPeteer, every method call or property getting/setting is synchronous.

Some methods have been aliased

The following methods have been aliased because PHP doesn't support the $ character in method names:

  • $ => querySelector
  • $$ => querySelectorAll
  • $x => querySelectorXPath
  • $eval => querySelectorEval
  • $$eval => querySelectorAllEval

Use these aliases just like you would have used the original methods:

$divs = $page->querySelectorAll('div');

Evaluated functions must be created with JsFunction

Functions evaluated in the context of the page must be written with the JsFunction class, the body of these functions must be written in JavaScript instead of PHP.

use Nesk\Rialto\Data\JsFunction;

$pageFunction = JsFunction::createWithParameters(['element'])
    ->body("return element.textContent");

Exceptions must be caught with ->tryCatch

If an error occurs in Node, a Node\FatalException will be thrown and the process closed, you will have to create a new instance of Puppeteer.

To avoid that, you can ask Node to catch these errors by prepending your instruction with ->tryCatch:

use Nesk\Rialto\Exceptions\Node;

try {
    $page->tryCatch->goto('invalid_url');
} catch (Node\Exception $exception) {
    // Handle the exception...
}

Instead, a Node\Exception will be thrown, the Node process will stay alive and usable.

License

The MIT License (MIT). Please see License File for more information.

Logo attribution

PuPHPeteer's logo is composed of:

Thanks to Laravel News for picking the icons and colors of the logo.

changelog

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

Note: PuPHPeteer is heavily based on Rialto. For a complete overview of the changes, you might want to check out Rialto's changelog too.

Unreleased

In progress…

2.0.0 - 2020-12-01

Added

  • Support Puppeteer v5.5
  • Support PHP 8
  • Add documentation on all resources to provide autocompletion in IDEs

Removed

  • Drop support for PHP 7.1 and 7.2

1.6.0 - 2019-07-01

Added

  • Support Puppeteer v1.18

1.5.0 - 2019-03-17

Added

  • Support Puppeteer v1.13
  • Make the ElementHandle resource extend the JSHandle one

Fixed

  • Add missing Accessibility resource

1.4.1 - 2018-11-27

Added

  • Support Puppeteer v1.10

1.4.0 - 2018-09-22

Added

  • Support Puppeteer v1.8

Changed

  • Detect resource types by using the constructor name

Fixed

  • Logs of initial pages are now retrieved

1.3.0 - 2018-08-20

Added

  • Add a log_browser_console option to log the output of Browser's console methods (console.log, console.debug, console.table, etc…) to the PHP logger
  • Support Puppeteer v1.7

1.2.0 - 2018-07-25

Added

  • Support Puppeteer v1.6

Changed

  • Upgrade to Rialto v1.1

1.1.0 - 2018-06-12

Added

  • Support Puppeteer v1.5
  • Add aliases for evaluation methods to the ElementHandle resource
  • Support new Puppeteer v1.5 resources:
    • BrowserContext
    • Worker

Fixed

  • Fix Travis tests

1.0.0 - 2018-06-05

Changed

  • Change PHP's vendor name from extractr-io to nesk
  • Change NPM's scope name from @extractr-io to @nesk
  • Upgrade to Rialto v1

0.2.2 - 2018-04-20

Added

  • Support Puppeteer v1.3
  • Test missing Puppeteer resources: ConsoleMessage and Dialog
  • Show a warning in logs if Puppeteer's version doesn't match requirements

0.2.1 - 2018-04-09

Changed

  • Update Rialto version requirements

0.2.0 - 2018-02-19

Added

  • Support new Puppeteer v1.1 resources:
    • BrowserFetcher
    • CDPSession
    • Coverage
    • SecurityDetails
  • Test Puppeteer resources
  • Support PHPUnit v7
  • Add Travis integration

Changed

  • Lock Puppeteer's version to v1.1 to avoid issues with forward compatibility

0.1.0 - 2018-01-29

First release