Alex

Results 225 issues of Alex

The `GeneralTest::testAdvancedForm` test started to fail recently: ``` 1) Behat\Mink\Tests\Driver\Form\GeneralTest::testAdvancedForm Failed asserting that ' Advanced form save array ( 'agreement' = 'on', 'email' = '[email protected]', 'first_name' = 'Foo "item"', 'last_name'...

bug

Configuration: - OS: Yosemite 10.10.5 - Google Chrome: 51.0.2704.84 (64-bit) - Selenium Server: 2.53 When running driver tests in there I have following failures: ``` There was 1 error: 1)...

bug

Right now we download (via curl) fixed Selenium binary version. With Travis CI cache feature enabled we can download it to folder that will be cached and therefore avoid future...

Drivers have very basic instructions on how to get use them, but no instructions how to contribute into them. Need to add section on CONTRIBUTING.md with details about: - how...

Main issue: https://github.com/minkphp/Mink/issues/406 Code Coverage: **71.60%** ![selenium2_code_coverage](https://f.cloud.github.com/assets/1277526/1677746/fe5943aa-5d2c-11e3-9be8-e750968e439a.png)

I've noticed, that macSVG isn't listed in Finder's `Open With` context menu. Maybe it happens because the app itself always starts with a new SVG file creation window instead of...

In the 1.x versions it was possible to use `Session::getSelectorsHandler()` method to get selectors handler and change it (e.g. add new selectors to it). In the `2-architecture-changes` branch things have...

2.0 branch

A lot of people are comparing current page url (obtained via `$session->getCurrentUrl()`) with desired url without even checking if a session was started. If session isn't started upfront, then doing...

bug

Consider following input: - prefix: `descendant-or-self::*[@id = 'checkbox-with-preceding-label']` - xpath: `(//label[@for = 'checkbox-with-preceding-label'])[1]` I expect result to be `descendant-or-self::*[@id = 'checkbox-with-preceding-label']/(//label[@for = 'checkbox-with-preceding-label'])[1]` (both prefix and xpath combined using `/`)....

bug

The `WebAssert::cleanUrl` method is stripping the query string (what comes after `?`) in processed url, which makes it impossible to use query string data in assertions made in MinkExtension steps...