behat/mink-zombie-driver

Zombie.js driver for Mink framework

Installs: 1 852 376

Dependents: 21

Suggesters: 4

Security: 0

Stars: 41

Watchers: 11

Forks: 49

Open Issues: 16

Type:mink-driver

v1.6.0 2022-03-28 14:41 UTC

This package is auto-updated.

Last update: 2024-03-12 13:13:50 UTC


README

Latest Stable Version Latest Unstable Version Total Downloads CI License codecov

Installation & Compatibility

You need a working installation of NodeJS and npm. Install the zombie.js library through npm:

$ npm install -g zombie

The driver requires zombie.js version 2.0.0 or higher.

Use Composer to install all required PHP dependencies:

$ composer require --dev behat/mink behat/mink-zombie-driver

Usage Example

<?php

use Behat\Mink\Mink,
    Behat\Mink\Session,
    Behat\Mink\Driver\ZombieDriver,
    Behat\Mink\Driver\NodeJS\Server\ZombieServer;

$host       = '127.0.0.1';
$port       = '8124';
$nodeBinary = '/usr/local/bin/node';

$mink = new Mink(array(
    'zombie' => new Session(new ZombieDriver(new ZombieServer(
        $host, $port, $nodeBinary
    ))),
));

$mink->setDefaultSessionName('zombie');

$session = $mink->getSession();
$session->visit('http://example.org');

$page = $session->getPage();
$elem = $page->find('css', 'h1');

echo $elem->getText();

Copyright

Copyright (c) 2011-2012 Pascal Cremer b00gizm@gmail.com

Maintainers