boga881/mink-goutte-driver

Goutte driver for Mink framework

Installs: 159

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 53

Type:mink-driver

dev-master / 2.x-dev 2023-03-19 23:50 UTC

This package is auto-updated.

Last update: 2024-04-20 02:01:53 UTC


README

Latest Stable Version Latest Unstable Version Total Downloads CI License codecov

Usage Example

<?php

require "vendor/autoload.php";

use Behat\Mink\Mink,
    Behat\Mink\Session,
    Behat\Mink\Driver\GoutteDriver,
    Goutte\Client as GoutteClient;

$mink = new Mink(array(
    'goutte' => new Session(new GoutteDriver(new GoutteClient())),
));

$session = $mink->getSession('goutte');
$session->visit("http://php.net/");
$session->getPage()->clickLink('Downloads');
echo $session->getCurrentUrl() . PHP_EOL;

Installation

Add a file composer.json with content:

{
    "require": {
        "behat/mink":               "^1.9",
        "behat/mink-goutte-driver": "^2.0"
    }
}

(or merge the above into your project's existing composer.json file)

$> curl -sS https://getcomposer.org/installer | php
$> php composer.phar install

Maintainers