* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Behat\MinkExtension\Context; use Behat\Behat\Context\Context; use Behat\Mink\Mink; /** * Mink aware interface for contexts. * * @author Konstantin Kudryashov */ interface MinkAwareContext extends Context { /** * Sets Mink instance. * * @param Mink $mink Mink session manager */ public function setMink(Mink $mink); /** * Sets parameters provided for Mink. * * @param array $parameters */ public function setMinkParameters(array $parameters); }