Yannick Warnier 76a0eae5ea Add static resources and remove tests dir for beta release | пре 5 година | |
---|---|---|
.. | ||
src | пре 5 година | |
tests | пре 5 година | |
.gitignore | пре 5 година | |
.travis.yml | пре 5 година | |
CHANGELOG.md | пре 5 година | |
LICENSE | пре 5 година | |
README.md | пре 5 година | |
composer.json | пре 5 година | |
phpunit.xml.dist | пре 5 година |
<?php
use Behat\Mink\Mink,
Behat\Mink\Session,
Behat\Mink\Driver\BrowserKitDriver;
use Symfony\Component\HttpKernel\Client;
$app = require_once(__DIR__.'/app.php'); // Silex app
$mink = new Mink(array(
'silex' => new Session(new BrowserKitDriver(new Client($app))),
));
$mink->getSession('silex')->getPage()->findLink('Chat')->click();
To install use the composer require
command:
composer require --dev behat/mink behat/mink-browserkit-driver