Alex
Alex
The toggle that enables profiling comes from a cookie value that is automatically set when a `_profile` request variable is present. If you can improve that logic to also look...
All, except for the iterator-related changes was done in the #226.
@bfabiszewski, Initially, I've got this warning with no way to proceed any further:  After running `qlmanage -p -o /tmp ` command I got a confirmation dialog (I never saw...
> Here is a link to a .mobi file: https://www.dropbox.com/scl/fi/8tb03erso8lbqep3vhc8i/Alice-in-Wonderland.mobi?rlkey=fvd9gnyuevdbwm1409vd09k9k&dl=0 The issue occurs on every .mobi file I try to preview. It worked for me. Big grey rectangle instead of...
It's not as bad as it seems. There is a documentation page showing all possible selector/locator values: https://mink.behat.org/en/latest/guides/traversing-pages.html#selectors. Architecturally, the idea of having `\Behat\Mink\Element\Element::find` method (and whoever calls it) accept...
We can advance this even further. ### Current state * there is a `\Behat\Mink\Selector\SelectorInterface` class with `translateToXPath($locator)` method * there are 4 classes implementing this interface: * `\Behat\Mink\Selector\CssSelector` * `\Behat\Mink\Selector\NamedSelector`...
Update 1: 1. Instead of having `FieldSelector($locator)` and `PartialFieldSelector($locator)` we can have `FieldSelector($locator, $partial = false)` instead. That would reduce added selector classes count twice. 2. Not sure how to...
FYI: I've used https://github.com/Yoast/PHPUnit-Polyfills in my other projects and this way the test suite only uses the latest PHPUnit methods, which are polyfilled for older PHPUnit versions. PR looks good...
Merging, thank you @villfa .
On one hand, I want to give flexibility to developers in specifying whatever parameters they need (it could be a combination of Request body and Query parameters). On the other...