You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			| 
				
					 … 
				
			 | 
			||
|---|---|---|
| .. | ||
| src | ||
| tests | ||
| .gitignore | ||
| .travis.yml | ||
| CHANGELOG.md | ||
| LICENSE | ||
| README.md | ||
| composer.json | ||
| phpunit.xml.dist | ||
		
			
				
				README.md
			
		
		
			
			
		
	
	Mink Goutte Driver
Usage Example
<?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:
{
    "require": {
        "behat/mink":               "~1.5",
        "behat/mink-goutte-driver": "~1.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
- Christophe Coevoet stof
 - Other awesome developers
 

