Mink
Mink copied to clipboard
PHP web browser emulator abstraction
Currently `setCookie` accepts only name and value. I suggest extending this so that the method accepts all other possible parameters: _domain_ and _expiry_ (not sure about _secure_ though) as described...
I think that we should normalize the value to empty string if `null` is passed. If you need a working example, I'll provide it in the week end but it...
The `DriverInterface` currently has method `getCookie($name) {}`, but it lacks `getCookies()`. This would be helpful in cases where the name of the cookie needed is not known. I understand this...
It's useful to find content in DOM elements, not just in the whole document.
In my case that was a useful method, to check that a select element has an option or not. And I think this will be also useful for others.
Hello. What is the best way to handle an unstable connection? I'm using the google chrome driver to login and submit on a form, however the target server is unstable,...
When I use the assert "assertFieldContains" on an element "select" with attribute "multiple", I have this error: `Notice: Array to string conversion in vendor/behat/mink/src/WebAssert.php line 678` This error correspond to...
There is no current way to tell if a driver will support JavaScript without doing a `try`/`catch`, which is the proposed approach over in https://github.com/jhedstrom/drupalextension/pull/325 It would be nice if...
- Addresses #752