Alex

Results 951 comments of 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: ![2024-02-06_16-18-24](https://github.com/bfabiszewski/QLMobi/assets/1277526/b2bb1d49-416c-42e1-8ba1-7e344916a2fa) 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...

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...