famelo / mink-flow-driver
TYPO3.Flow driver for Mink framework
Installs: 7
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:mink-driver
Requires
- php: >=5.3.1
- behat/mink: >=1.4.0,<1.5.0-dev
- behat/mink-browserkit-driver: *
This package is auto-updated.
Last update: 2024-11-05 18:01:08 UTC
README
Usage Example
<?php use Behat\Mink\Mink, Behat\Mink\Session, Behat\Mink\Driver\GoutteDriver, Behat\Mink\Driver\Goutte\Client as GoutteClient; $startUrl = 'http://example.com'; $mink = new Mink(array( 'goutte' => new Session(new GoutteDriver(new GoutteClient($startUrl))), )); $mink->getSession('goutte')->getPage()->findLink('Chat')->click();
Installation
{ "requires": { "behat/mink": "1.4.*", "behat/mink-goutte-driver": "*" } }
curl http://getcomposer.org/installer | php
php composer.phar install
Copyright
Copyright (c) 2012 Konstantin Kudryashov (ever.zet). See LICENSE for details.
Maintainers
- Konstantin Kudryashov everzet