Coder Social home page Coder Social logo

docs's Introduction

docs's People

Contributors

a3020 avatar aik099 avatar alexpott avatar clemherreman avatar davidwinter avatar do-rin avatar duncanssmith avatar everzet avatar exu avatar fonsecas72 avatar grahamcampbell avatar ifdattic avatar invertedacceleration avatar jdreesen avatar jmfontaine avatar jonathanjfshaw avatar jpswelch avatar michaellenahan avatar pborreli avatar phil-davis avatar rtretyakov avatar ruudk avatar stof avatar thomaslandauer avatar tleb avatar wouterj avatar xmeltrut avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

docs's Issues

Misleading description of Mink

the first section of the doc (and the description of the Mink repo on github) describes Mink as an acceptance test framework for web application.
I think this description is wrong. Mink is a browser controller/emulator. Not an acceptance test framework (it is not a test framework at all).

Change the DNS for the mink.behat.org domain

It currently redirects to the Behat/Mink repo on Github. This will become wrong anyway when moving the code to the minkphp organization. We should update the domain to point to RTD

Add a contributing section

This page (or pages) should explain how to report issues (which repo), and how to contribute to the repo, including new features impacting drivers (which require updating 2 testsuites in Mink to cover drivers)

PHP fatal error in context file leads to node process stucking

I have such case: PHP fatal error in context (like attempt to click not existing button $this->getSession()->getPage()->findButton('NotExisting')->click();) leads to Node process stucking - repeated Behat start fails because Node can not reuse port which is already in use.

First start

# php ./composer/vendor/behat/behat/bin/behat

...[feature description skipped]...

PHP Fatal error:  Call to a member function click() on a non-object 
in /project/tests/behat/features/bootstrap/Search.php on line 17

Fatal error: Call to a member function click() on a non-object 
in /project/tests/behat/features/bootstrap/Search.php on line 17

Second start and further

# php ../../composer/vendor/behat/behat/bin/behat

...[feature description skipped]...

Server process has been terminated: (8) [
events.js:72
      throw er; // Unhandled 'error' event
            ^
Error: listen EADDRINUSE
  at errnoException (net.js:904:11)
  at Server._listen2 (net.js:1042:14)
  at listen (net.js:1064:10)
  at net.js:1146:9
  at Object._onImmediate (/usr/lib/node_modules/zombie/lib/zombie/dns_mask.js:69:16)
  at processImmediate [as _immediateCallback] (timers.js:345:15)
] (RuntimeException)

So all my further calls will fail, and the only thing i can do here is to go to server, run netstat -tulpn and kill <node PID>.

Is there anything you can do about it?

Rewrite the Session documentation

The page about the Session needs to be rewritten. It should describe it as the main API of Mink rather than as a convenience layer on top of the driver

Doc about session lazy-start is outdated

The managing-sessions page says that the Mink class starts the session automatically when getting it. This is not true anymore since the change to auto-start the session when visiting a page.

Delete Page about SahiDriver (which is abandoned)

When installing SahiDriver with composer require behat/mink-sahi-driver (as explained at http://mink.behat.org/en/latest/drivers/sahi.html ) I get:

Package behat/sahi-client is abandoned, you should avoid using it. No replacement was suggested.
Package behat/mink-sahi-driver is abandoned, you should avoid using it. No replacement was suggested.

...according to https://packagist.org/packages/behat/mink-sahi-driver

So if the driver is abandoned, I would suggest deleting it from the docs.

Add a paragraph about third-party driver implementations

Thanks to http://packanalyst.com/class?q=Behat\Mink\Driver\DriverInterface I found the implemetations of our DriverInterface in Packagist packages. Apart from several child classes of our drivers for specific testsuite needs (not always necessary for Mink 1.6 btw), this allowed me to detect 2 different implementations of a capybara-webkit driver, which was initially proposed in minkphp/Mink#221 (but never completed). I requested the status of these drivers, as they are both forcing to use Mink 1.5 currently.
I suggest adding section about third-party drivers in http://mink.behat.org/en/latest/guides/drivers.html once we get answers from the respective maintainers to know whether they want them to be listed (a prerequisite would be to make them compatible with Mink 1.6 and a nice-to-have would be to make them run the Mink 1.6+ driver testsuite):

Session interaction timing out for a particular site

I'm experiencing an issue using Mink to control Firefox through Sahi where when I try to interact with the session in any way (e.g. running getPage()->getContent() or simply wait(2000)) I don't get the expected response and Mink eventually times out.

I've used the exact same code for various other websites and it works perfectly. This one single website seems to be stopping either Mink or Sahi from providing a response. I can't seem to find any reliable way of debugging the issue, all I can do is wait for the timeout to occur.

The code I'm using to retrieve the markup from a page is as follows:

// Configure driver
$this->driver = new \Behat\Mink\Driver\SahiDriver('firefox',
    new \Behat\SahiClient\Client(
        new \Behat\SahiClient\Connection(null, CRAWL_SERVER, 9999)
    )
);

// Init session:
$this->session = new \Behat\Mink\Session($this->driver);

// Start session:
$this->session->start();

// Open the url
$this->session->visit($config['url']);

// Get the markup from the page
$markup = $this->session->getPage()->getContent();

The page I'm trying to scrape is: https://www.o2.co.uk/shop/phones/

I also have a post up on on Stack Overflow here.

I'm using Mink 1.6 - installed using composer on 27/11/2014

tl;dr Why is Mink/Sahi timing out on this site?

Maybe mention chromedriver and xvfb-run?

I found xvfb-run chromedriver --port=4444 to work ... where google-chrome-stable --headless did not. I am not expert on this, I am just reporting and asking: would this be useful in the documentation?

Update the page manipulation chapter

Methods of the Element added in 1.5 and 1.6 are missing in this chapter.

Improving the explainations about the Element API rather than just being an API doc might be good as well.

Manual not clear

I am reading and playing with behat

Basic Browser Interaction
Now that your session is started, you’ll want to open a page with it. Just after starting, the session is not on any page (in a real browser, you would be on the about:blank page), and calling any other action is likely to fail.

$session->visit('http://my_project.dev/some_page.php');

I have stopped in here where I do not know what to do next
Fatal error: Uncaught GuzzleHttp\Exception\RequestException: cURL error 60: SSL certificate problem: unable to get local issuer certificate

I do not have control over global php.ini so I thought I might use simple curl SSL_VERYFY to false. but there is no information how should I do that. Some people say I should create behat.yml but this not work when reading documentation. I stuck for several hrs on a basic action.... solving mistery problems of SSL not focusing on behat testing etc.

Could somone could improve documentation to a level - it just works out of the box?
Thanks

setValue can't work in vuejs apps

Hi. I'm integrating with an VueJS app and when I call $inputNode->setValue('test') I see the "test" string in the input, but when I click to submit form, for example, it's like the input was never inputed. In other words, vuejs can't get the input was changed.

Someone can show me a light? Thanks.

Add options to Selenium2Driver setValue method

Currently, the Selenium Driver setValue method includes the following at the bottom:

$value = strval($value);

if (in_array($elementName, array('input', 'textarea'))) {
  $existingValueLength = strlen($element->attribute('value'));
  // Add the TAB key to ensure we unfocus the field as browsers are triggering the change event only
  // after leaving the field.
  $value = str_repeat(Key::BACKSPACE . Key::DELETE, $existingValueLength) . $value . Key::TAB;
}

$element->postValue(array('value' => array($value)));

There is no option given to exclude the tab key from the posted value, as it is presumed to be necessary to trigger the change event. In my work with Drupal 7's autocomplete field, however, the field reacts to the onChange event, and the tab will submit the value. In fields where the user must choose one of the predefined values, this causes an exception.

I'd like to be able to optionally not add the tab key to the input. Something akin to:

**
 * {@inheritdoc}
 */
public function setValue($xpath, $value, $options=array()) {
  $options = $options + array(
    'addTab'=>TRUE
  );
  $element = $this->findElement($xpath);
  $elementName = strtolower($element->name());

  if ('select' === $elementName) {
    if (is_array($value)) {
      $this->deselectAllOptions($element);

      foreach ($value as $option) {
        $this->selectOptionOnElement($element, $option, TRUE);
      }

      return;
    }

    $this->selectOptionOnElement($element, $value);

    return;
  }

  if ('input' === $elementName) {
    $elementType = strtolower($element->attribute('type'));

    if (in_array($elementType, array('submit', 'image', 'button', 'reset'))) {
      throw new DriverException(sprintf('Impossible to set value an element with XPath "%s" as it is not a select, textarea or textbox', $xpath));
    }

    if ('checkbox' === $elementType) {
      if ($element->selected() xor (bool) $value) {
        $this->clickOnElement($element);
      }

      return;
    }

    if ('radio' === $elementType) {
      $this->selectRadioValue($element, $value);

      return;
    }

    if ('file' === $elementType) {
      $element->postValue(array('value' => array(strval($value))));

      return;
    }
  }

  $value = strval($value);

  if (in_array($elementName, array('input', 'textarea'))) {
    $existingValueLength = strlen($element->attribute('value'));
    // Add the TAB key to ensure we unfocus the field as browsers are triggering the change event only
    // after leaving the field.
    $value = str_repeat(Key::BACKSPACE . Key::DELETE, $existingValueLength) . $value . (($options['addTab']) ? Key::TAB : '');
  }

  $element->postValue(array('value' => array($value)));
}

A diff of the file from the original with these changes would be:

290d289
< 
636d634
<   public function setValue($xpath, $value) {
637a636,639
>   public function setValue($xpath, $value, $options=array()) {
>     $options = $options + array(
>       'addTab'=>TRUE
>     );
691c693
<       $value = str_repeat(Key::BACKSPACE . Key::DELETE, $existingValueLength) . $value . Key::TAB;

---
>       $value = str_repeat(Key::BACKSPACE . Key::DELETE, $existingValueLength) . $value . (($options['addTab']) ? Key::TAB : '');

Add a getting starting chapter

This chapter should show a working example using the Session and manipulating a page.

I suggest to use GoutteDriver to setup the Session in this example because it is the easier to setup (no mandatory constructor argument, no external steps to prepare the driver)

Update docs to highlight reset limitation in Selenium

I've come across a Selenium cookie clearance limitation (leading to session 'bleed' if a scenario ends on a different domain): minkphp/Mink#642

Please can you include this limitation in the updated docs? I had the impression that scenarios were isolated so it was a surprise when we found this particular case.

Link to full Mink API results in a 404

I'd like to see the full docs for Mink, specifically the API, but the link results in a 404. I've googled for Mink API, but I'm unable to find a list of all the functions. Any idea where I can find it?

Would like mink to return browserstack sessionid.

Hi can anyone advise on how to get mink to return the sessionid from browser stack

For Selenium this is how it is done ->
Session ID
To obtain the session ID of a running BrowserStack Automate session:
$web_driver->getSessionID();

Thank you in advance.

Rewrite the page traversing chapter

The focus should not be on the SelectorsHandler class (most users will not need to deal with it directly. It is an internal API). We should start from the user-facing API instead (i.e. Element::find and Element::findAll)

i have some problem about submit from for input value is not working.

$mink = new Mink(array(
'samarkpage' => new Session(new GoutteDriver(new GoutteClient())),
));
$mink->setDefaultSessionName('sessionName');
$mink->getSession('sessionName')->visit($startUrl);
$mink->getSession('sessionName')->getPage()->fillField('login', 'username');
$mink->getSession('sessionName')->getPage()->fillField('password', 'password');
$mink->getSession('samarkpage')->getPage()->find('css', '.loginButton')->submit();

URL : https://api.4shared.com/web/login?returnTo=https%3A%2F%2Fapi.4shared.com%2Fv1_2%2Foauth%2Fauthorize%3Foauth_token%3D0c2b0cfc1377a442ab4fca2c645df45a

Do you have a simple implement code like this ? .
What 's wrong ? .
Can you help me please.
Thank you.

Outdated.

composer


"require": {
    "php": "^7.2",
    "ext-curl": "*",
    "ext-dom": "*",
    "ext-iconv": "*",
    "ext-json": "*",
    "ext-pdo": "*",
    "ext-mbstring": "*",
    "beberlei/doctrineextensions": "^1.0",
    "debril/rss-atom-bundle": "^4.2",
    "deployer/deployer": "^6.1",
    "doctrine/cache": "^1.7",
    "doctrine/dbal": "^2.7",
    "doctrine/doctrine-bundle": "^1.6.10",
    "doctrine/doctrine-migrations-bundle": "^1.3",
    "doctrine/orm": "^2.5.11",
    "fig/link-util": "^1.0",
    "fzaninotto/faker": "^1.7",
    "gedmo/doctrine-extensions": "^2.4",
    "google/recaptcha": "^1.1",
    "happyr/doctrine-specification": "^0.7.2",
    "machy8/google-closure-compiler": "^1.0",
    "mathiasverraes/classfunctions": "^1.1",
    "nelmio/api-doc-bundle": "^3.0",
    "nelmio/cors-bundle": "^1.5",
    "nesbot/carbon": "^1.24",
    "ocramius/proxy-manager": "^2.2",
    "php-amqplib/rabbitmq-bundle": "^1.14",
    "php-http/guzzle6-adapter": "^1.1",
    "predis/predis": "^1.1",
    "prooph/event-sourcing": "^5.6",
    "prooph/event-store": "^7.3",
    "prooph/event-store-bus-bridge": "^3.2",
    "prooph/event-store-http-middleware": "^0.2.0",
    "prooph/event-store-symfony-bundle": "^0.5.0",
    "prooph/pdo-event-store": "^1.9",
    "psr/cache": "~1.0",
    "psr/link": "^1.0",
    "psr/log": "^1.0",
    "psr/simple-cache": "^1.0",
    "ramsey/uuid": "^3.7",
    "react/cache": "^0.4.2",
    "react/event-loop": "^0.5.2",
    "react/http": "^0.8.3",
    "react/promise": "^2.7",
    "react/socket": "^0.8.11",
    "react/stream": "^0.7.7",
    "sensiolabs/security-checker": "^4.1",
    "sentry/sentry-symfony": "^2.0",
    "snc/redis-bundle": "^2.0",
    "symfony/asset": "^4.0",
    "symfony/cache": "^4.0",
    "symfony/config": "^4.1",
    "symfony/console": "^4.1",
    "symfony/debug-pack": "^1.0",
    "symfony/dependency-injection": "^4.1",
    "symfony/dom-crawler": "^4.0",
    "symfony/event-dispatcher": "^4.1",
    "symfony/filesystem": "^4.1",
    "symfony/finder": "^4.1",
    "symfony/flex": "^1.0",
    "symfony/http-foundation": "~4.1",
    "symfony/lts": "^4@dev",
    "symfony/messenger": "^4.1",
    "symfony/options-resolver": "^4.0",
    "symfony/psr-http-message-bridge": "^1.0",
    "symfony/requirements-checker": "^1.1",
    "symfony/routing": "^4.1",
    "symfony/security": "^4.1",
    "symfony/security-acl": "^3.0",
    "symfony/security-bundle": "^4.0",
    "symfony/security-core": "^4.1",
    "symfony/security-guard": "^4.1",
    "symfony/security-http": "^4.1",
    "symfony/serializer": "^4.1",
    "symfony/swiftmailer-bundle": "^3.1",
    "symfony/templating": "^4.1",
    "symfony/translation": "4.0.2",
    "symfony/twig-bundle": "^4.0",
    "symfony/validator": "^4.0",
    "symfony/webpack-encore-pack": "^1.0",
    "symfony/yaml": "^4.0",
    "vertigolabs/doctrine-full-text-postgres-bundle": "^1.0",
    "zendframework/zend-diactoros": "^1.8",
    "zendframework/zend-mail": "^2.10",
    "ext-libxml": "*",
    "ext-simplexml": "*",
    "ext-zlib": "*"
  },
  "require-dev": {
    "ext-xml": "*",
    "alexandresalome/doctrine-extra-bundle": "^0.3.0",
    "dama/doctrine-test-bundle": "^5.0",
    "doctrine/doctrine-fixtures-bundle": "^3.0",
    "easycorp/easy-log-handler": "^1.0.2",
    "guzzlehttp/guzzle": "^6.3",
    "malukenho/docheader": "^0.1.7",
    "phan/phan": "^0.12.15",
    "phpmetrics/phpmetrics": "^2.3",
    "phpstan/phpstan": "^0.9.2",
    "phpstan/phpstan-doctrine": "^0.9.1",
    "phpstan/phpstan-phpunit": "^0.9.4",
    "phpunit/phpunit": "^7.1",
    "roave/security-advisories": "dev-master",
    "symfony/css-selector": "^4.0",
    "symfony/dotenv": "^4.0",
    "symfony/http-kernel": "~4.0",
    "symfony/monolog-bundle": "^3.1",
    "symfony/var-dumper": "^4.0"
  },
 Problem 1
    - behat/mink v1.7.1 requires symfony/css-selector ~2.1|~3.0 -> satisfiable by symfony/css-selector[2.1.x-dev, 2.2.x-dev, 2.3.x-dev, 2.4.x-dev, 2.5.x-dev, 2.6.x-dev, 2.7.x-dev, 2.8.x-dev, 3.0.x-dev, 3.1.x-dev, 3.2.x-dev, 3.3.x-dev, 3.4.x-dev, v2.1.0, v2.1.1, v2.1.10, v2.1.11, v2.1.12, v2.1.13, v2.1.2, v2.1.3, v2.1.4, v2.1.5, v2.1.6, v2.1.7, v2.1.8, v2.1.9, v2.2.0, v2.2.1, v2.2.10, v2.2.11, v2.2.2, v2.2.3, v2.2.4, v2.2.5, v2.2.6, v2.2.7, v2.2.8, v2.2.9, v2.3.0, v2.3.1, v2.3.10, v2.3.11, v2.3.12, v2.3.13, v2.3.14, v2.3.15, v2.3.16, v2.3.17, v2.3.18, v2.3.19, v2.3.2, v2.3.20, v2.3.21, v2.3.22, v2.3.23, v2.3.24, v2.3.25, v2.3.26, v2.3.27, v2.3.28, v2.3.29, v2.3.3, v2.3.30, v2.3.31, v2.3.32, v2.3.33, v2.3.34, v2.3.35, v2.3.36, v2.3.37, v2.3.38, v2.3.39, v2.3.4, v2.3.40, v2.3.41, v2.3.42, v2.3.5, v2.3.6, v2.3.7, v2.3.8, v2.3.9, v2.4.0, v2.4.0-BETA1, v2.4.0-BETA2, v2.4.0-RC1, v2.4.1, v2.4.10, v2.4.2, v2.4.3, v2.4.4, v2.4.5, v2.4.6, v2.4.7, v2.4.8, v2.4.9, v2.5.0, v2.5.0-BETA1, v2.5.0-BETA2, v2.5.0-RC1, v2.5.1, v2.5.10, v2.5.11, v2.5.12, v2.5.2, v2.5.3, v2.5.4, v2.5.5, v2.5.6, v2.5.7, v2.5.8, v2.5.9, v2.6.0, v2.6.0-BETA1, v2.6.0-BETA2, v2.6.1, v2.6.10, v2.6.11, v2.6.12, v2.6.13, v2.6.2, v2.6.3, v2.6.4, v2.6.5, v2.6.6, v2.6.7, v2.6.8, v2.6.9, v2.7.0, v2.7.0-BETA1, v2.7.0-BETA2, v2.7.1, v2.7.10, v2.7.11, v2.7.12, v2.7.13, v2.7.14, v2.7.15, v2.7.16, v2.7.17, v2.7.18, v2.7.19, v2.7.2, v2.7.20, v2.7.21, v2.7.22, v2.7.23, v2.7.24, v2.7.25, v2.7.26, v2.7.27, v2.7.28, v2.7.29, v2.7.3, v2.7.30, v2.7.31, v2.7.32, v2.7.33, v2.7.34, v2.7.35, v2.7.36, v2.7.37, v2.7.38, v2.7.39, v2.7.4, v2.7.40, v2.7.41, v2.7.42, v2.7.43, v2.7.44, v2.7.45, v2.7.46, v2.7.47, v2.7.48, v2.7.49, v2.7.5, v2.7.50, v2.7.6, v2.7.7, v2.7.8, v2.7.9, v2.8.0, v2.8.0-BETA1, v2.8.1, v2.8.10, v2.8.11, v2.8.12, v2.8.13, v2.8.14, v2.8.15, v2.8.16, v2.8.17, v2.8.18, v2.8.19, v2.8.2, v2.8.20, v2.8.21, v2.8.22, v2.8.23, v2.8.24, v2.8.25, v2.8.26, v2.8.27, v2.8.28, v2.8.29, v2.8.3, v2.8.30, v2.8.31, v2.8.32, v2.8.33, v2.8.34, v2.8.35, v2.8.36, v2.8.37, v2.8.38, v2.8.39, v2.8.4, v2.8.40, v2.8.41, v2.8.42, v2.8.43, v2.8.44, v2.8.45, v2.8.46, v2.8.47, v2.8.48, v2.8.49, v2.8.5, v2.8.6, v2.8.7, v2.8.8, v2.8.9, v3.0.0, v3.0.0-BETA1, v3.0.1, v3.0.2, v3.0.3, v3.0.4, v3.0.5, v3.0.6, v3.0.7, v3.0.8, v3.0.9, v3.1.0, v3.1.0-BETA1, v3.1.0-RC1, v3.1.1, v3.1.10, v3.1.2, v3.1.3, v3.1.4, v3.1.5, v3.1.6, v3.1.7, v3.1.8, v3.1.9, v3.2.0, v3.2.0-BETA1, v3.2.0-RC1, v3.2.0-RC2, v3.2.1, v3.2.10, v3.2.11, v3.2.12, v3.2.13, v3.2.14, v3.2.2, v3.2.3, v3.2.4, v3.2.5, v3.2.6, v3.2.7, v3.2.8, v3.2.9, v3.3.0, v3.3.0-BETA1, v3.3.0-RC1, v3.3.1, v3.3.10, v3.3.11, v3.3.12, v3.3.13, v3.3.14, v3.3.15, v3.3.16, v3.3.17, v3.3.18, v3.3.2, v3.3.3, v3.3.4, v3.3.5, v3.3.6, v3.3.7, v3.3.8, v3.3.9, v3.4.0, v3.4.0-BETA1, v3.4.0-BETA2, v3.4.0-BETA3, v3.4.0-BETA4, v3.4.0-RC1, v3.4.0-RC2, v3.4.1, v3.4.10, v3.4.11, v3.4.12, v3.4.13, v3.4.14, v3.4.15, v3.4.16, v3.4.17, v3.4.18, v3.4.19, v3.4.2, v3.4.20, v3.4.21, v3.4.22, v3.4.3, v3.4.4, v3.4.5, v3.4.6, v3.4.7, v3.4.8, v3.4.9] but these conflict with your requirements or minimum-stability.
    - behat/mink v1.7.0 requires symfony/css-selector ~2.1 -> satisfiable by symfony/css-selector[2.1.x-dev, 2.2.x-dev, 2.3.x-dev, 2.4.x-dev, 2.5.x-dev, 2.6.x-dev, 2.7.x-dev, 2.8.x-dev, v2.1.0, v2.1.1, v2.1.10, v2.1.11, v2.1.12, v2.1.13, v2.1.2, v2.1.3, v2.1.4, v2.1.5, v2.1.6, v2.1.7, v2.1.8, v2.1.9, v2.2.0, v2.2.1, v2.2.10, v2.2.11, v2.2.2, v2.2.3, v2.2.4, v2.2.5, v2.2.6, v2.2.7, v2.2.8, v2.2.9, v2.3.0, v2.3.1, v2.3.10, v2.3.11, v2.3.12, v2.3.13, v2.3.14, v2.3.15, v2.3.16, v2.3.17, v2.3.18, v2.3.19, v2.3.2, v2.3.20, v2.3.21, v2.3.22, v2.3.23, v2.3.24, v2.3.25, v2.3.26, v2.3.27, v2.3.28, v2.3.29, v2.3.3, v2.3.30, v2.3.31, v2.3.32, v2.3.33, v2.3.34, v2.3.35, v2.3.36, v2.3.37, v2.3.38, v2.3.39, v2.3.4, v2.3.40, v2.3.41, v2.3.42, v2.3.5, v2.3.6, v2.3.7, v2.3.8, v2.3.9, v2.4.0, v2.4.0-BETA1, v2.4.0-BETA2, v2.4.0-RC1, v2.4.1, v2.4.10, v2.4.2, v2.4.3, v2.4.4, v2.4.5, v2.4.6, v2.4.7, v2.4.8, v2.4.9, v2.5.0, v2.5.0-BETA1, v2.5.0-BETA2, v2.5.0-RC1, v2.5.1, v2.5.10, v2.5.11, v2.5.12, v2.5.2, v2.5.3, v2.5.4, v2.5.5, v2.5.6, v2.5.7, v2.5.8, v2.5.9, v2.6.0, v2.6.0-BETA1, v2.6.0-BETA2, v2.6.1, v2.6.10, v2.6.11, v2.6.12, v2.6.13, v2.6.2, v2.6.3, v2.6.4, v2.6.5, v2.6.6, v2.6.7, v2.6.8, v2.6.9, v2.7.0, v2.7.0-BETA1, v2.7.0-BETA2, v2.7.1, v2.7.10, v2.7.11, v2.7.12, v2.7.13, v2.7.14, v2.7.15, v2.7.16, v2.7.17, v2.7.18, v2.7.19, v2.7.2, v2.7.20, v2.7.21, v2.7.22, v2.7.23, v2.7.24, v2.7.25, v2.7.26, v2.7.27, v2.7.28, v2.7.29, v2.7.3, v2.7.30, v2.7.31, v2.7.32, v2.7.33, v2.7.34, v2.7.35, v2.7.36, v2.7.37, v2.7.38, v2.7.39, v2.7.4, v2.7.40, v2.7.41, v2.7.42, v2.7.43, v2.7.44, v2.7.45, v2.7.46, v2.7.47, v2.7.48, v2.7.49, v2.7.5, v2.7.50, v2.7.6, v2.7.7, v2.7.8, v2.7.9, v2.8.0, v2.8.0-BETA1, v2.8.1, v2.8.10, v2.8.11, v2.8.12, v2.8.13, v2.8.14, v2.8.15, v2.8.16, v2.8.17, v2.8.18, v2.8.19, v2.8.2, v2.8.20, v2.8.21, v2.8.22, v2.8.23, v2.8.24, v2.8.25, v2.8.26, v2.8.27, v2.8.28, v2.8.29, v2.8.3, v2.8.30, v2.8.31, v2.8.32, v2.8.33, v2.8.34, v2.8.35, v2.8.36, v2.8.37, v2.8.38, v2.8.39, v2.8.4, v2.8.40, v2.8.41, v2.8.42, v2.8.43, v2.8.44, v2.8.45, v2.8.46, v2.8.47, v2.8.48, v2.8.49, v2.8.5, v2.8.6, v2.8.7, v2.8.8, v2.8.9] but these conflict with your requirements or minimum-stability.
    - Installation request for behat/mink ^1.7 -> satisfiable by behat/mink[v1.7.0, v1.7.1].

WebDriver\Exception\UnknownException

I am having problem running mink + behat combo. The scenario looks as follows:

@javascript @insulated
Feature: Login
  Scenario: Login valid
    Given I am on "/auth/login"
    When I fill in the following:
      | email | xxx |
      | pass_hash | xxx |
    And I press "Sign in"
    Then I should be on "/dashboard"

  Scenario: Login invalid
    Given I am on "/auth/login"
    When I fill in the following:
      | email | yyy |
      | pass_hash | yyy |
    And I press "Sign in"
    Then I should see "Wrong e-mail or password."

And I get the following result
https://gist.github.com/rgembalik/fe7e8dbbe53d2ee8669b

behat.yml looks like this:

default:
    extensions:
        mink_extension.phar:
            mink_loader: mink.phar
            base_url: http://localhost/testpage
            goutte: ~
            selenium2:
                wd_host: http://127.0.0.1:4444/wd/hub
                capabilities:
                  version: ''

Selenium session is created and firefox is launching, but no url is inserted. Sessions stays registered in selenium (it is visible under http://127.0.0.1:4444/wd/hub).

Any idea and/or suggestions?

EDIT:
BTW, when I try it without @javascript @insulated it works just fine and the test passes. I have problems only with selenium.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.