MinkExtension
Provides integrartion layer:
- Additional services for Behat (
Mink,Sessions,Drivers). Behat\MinkExtension\Context\MinkAwareContextInterfacewhich providesMinkinstance for your contexts or subcontexts.- Base
Behat\MinkExtension\Context\MinkContextcontext which provides base step definitions and hooks for your contexts or subcontexts. Or it could be even used as subcontext on its own.
between Behat 2.4+ and Mink 1.4+.
Installation
This extension requires:
- Behat 2.4+
- Mink 1.4+
While there is no stable versions for those packages, you could download betas from:
After downloading and placing them into project directory, you need to download and
activate MinkExtension:
-
Put downloaded phar package into folder with Behat and Mink
-
Tell Behat about extensions with
behat.ymlconfiguration:# behat.yml defaults: # ... extensions: mink_extension.phar: mink_loader: 'mink-VERSION.phar' base_url: 'http://example.com' javascript_session: 'selenium2' goutte: ~ selenium2: ~For all configuration options, check extension configuration class.
Usage
After installing extension, there would be 3 usage options available for you:
-
Subcontexting/extending
Behat\MinkExtension\Context\RawMinkContextin your feature suite. This will give you ability to use preconfiguredMinkinstance altogether with some convenience methods:getSession($name = null)assertSession($name = null)
And autohook, which will switch current session based on scenario tags.
-
Subcontexting/extending
Behat\MinkExtension\Context\MinkContextin your feature suite. Exactly like previous option, but also provides lot of predefined step definitions out of the box. -
Implementing
Behat\MinkExtension\Context\MinkAwareContextInterfacewith your context or its subcontexts. This will give you more customization options. Also, you can use this mechanism on multiple contexts avoiding the need to call parent contexts from subcontexts when only thing you need is mink instance.
There's common things between those 3 methods. In each of those, target context will implement
setMink(Mink $mink) and setMinkParameters(array $parameters) methods. Those methods would
be automatically called immediately after each context creation before each scenario. And
this $mink instance will be preconfigured based on the settings you've provided in your
behat.yml.
Concrete FeatureContext example:
<?php
use Behat\MinkExtension\Context\MinkContext;
class FeatureContext extends MinkContext
{
/**
* @Then /^I wait for the suggestion box to appear$/
*/
public function iWaitForTheSuggestionBoxToAppear()
{
$this->getSession()->wait(5000, "$('.suggestions-results').children().length > 0");
}
}
Copyright
Copyright (c) 2012 Konstantin Kudryashov (ever.zet). See LICENSE for details.
Contributors
- Konstantin Kudryashov everzet [lead developer]
- Other awesome developers
Sponsors
- knpLabs knpLabs [main sponsor]