GoutteConfig.php 397 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace Behat\Mink\Tests\Driver;
  3. use Behat\Mink\Driver\GoutteDriver;
  4. class GoutteConfig extends AbstractConfig
  5. {
  6. public static function getInstance()
  7. {
  8. return new self();
  9. }
  10. /**
  11. * {@inheritdoc}
  12. */
  13. public function createDriver()
  14. {
  15. return new GoutteDriver();
  16. }
  17. protected function supportsJs()
  18. {
  19. return false;
  20. }
  21. }