This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
drupalcampbristol/vendor/behat/mink-goutte-driver/tests/GoutteConfig.php

27 lines
397 B
PHP
Raw Normal View History

<?php
namespace Behat\Mink\Tests\Driver;
use Behat\Mink\Driver\GoutteDriver;
class GoutteConfig extends AbstractConfig
{
public static function getInstance()
{
return new self();
}
/**
* {@inheritdoc}
*/
public function createDriver()
{
return new GoutteDriver();
}
protected function supportsJs()
{
return false;
}
}