Mercurial > hg > isophonics-drupal-site
view vendor/behat/mink-goutte-driver/README.md @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | 4c8ae668cc8c |
children |
line wrap: on
line source
Mink Goutte Driver ================== [](https://packagist.org/packages/behat/mink-goutte-driver) [](https://packagist.org/packages/behat/mink-goutte-driver) [](https://packagist.org/packages/behat/mink-goutte-driver) [](https://travis-ci.org/minkphp/MinkGoutteDriver) [](https://scrutinizer-ci.com/g/minkphp/MinkGoutteDriver/) [](https://scrutinizer-ci.com/g/minkphp/MinkGoutteDriver/) [](https://packagist.org/packages/behat/mink-goutte-driver) Usage Example ------------- ``` php <?php require "vendor/autoload.php"; use Behat\Mink\Mink, Behat\Mink\Session, Behat\Mink\Driver\GoutteDriver, Behat\Mink\Driver\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: ``` json { "require": { "behat/mink": "~1.5", "behat/mink-goutte-driver": "~1.0" } } ``` (or merge the above into your project's existing composer.json file) ``` bash $> curl -sS https://getcomposer.org/installer | php $> php composer.phar install ``` Maintainers ----------- * Christophe Coevoet [stof](https://github.com/stof) * Other [awesome developers](https://github.com/minkphp/MinkGoutteDriver/graphs/contributors)