You are here

GoutteConfig.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 vendor/behat/mink-goutte-driver/tests/GoutteConfig.php

File

vendor/behat/mink-goutte-driver/tests/GoutteConfig.php
View source
<?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;
  }

}

Classes

Namesort descending Description
GoutteConfig