Jon
Jon
> Min value doesn't have effect on empty strings. @NiLon - I have just discovered this. Are you saying this is considered correct? I will put in a regex for...
Ah, I found the bug, it is indeed wrong. A minimum length of one is correctly enforced in an ordinary non-map filter, but there is a bug in the `Map`...
I've fixed this using the following subclass: ```
Urgh. In fact, that won't catch a type failure where a null is provided as a string, since the string will be filtered down to a null anyway. It would...
I've modified my version of `validate()` above, which passes more of my own tests: ``` public function validate($var) { if (!is_object($var) && !is_array($var)) { return false; } $ok = true;...
I'm moving from Bower to NPM on an old project, and EasyTabs is the only one that is not listed. I think downloading it manually (from GitHub releases) is the...
I do this in my Dockerfile: ``` composer install \ && vendor/bin/bdi detect drivers -vv \ && mv drivers/* /usr/local/bin/ ``` This just puts my driver (chromedriver) in my system...
@javlae2 you could try hardwiring the path to your driver and supplying it in your client creation call. I do this for Chrome: ``` $client = Client::createChromeClient( $this->getTestDir() . '/scripts/chromedriver',...
What are you using for `myframe`? I think that needs to be a selector object, not a string. Here is some code I have working in production: ```php $client->waitForVisibility('#Container iframe');...
@bastien70 - I don't think I can help further. If you can provide a ready-to-go minimal reproducible sample in Docker Compose, I can take a look at it.