Thomas Landauer
Thomas Landauer
**Describe the bug** I'm talking about the same arrow as in https://github.com/EasyCorp/EasyAdminBundle/issues/3267 When passing a *nested* association to `setDefaultSort()` this arrow is not shown - that's the reason why I...
I haven't tested Chrome; it's taken from https://github.com/symfony/panther/issues/428 (which can be closed now IMO) Firefox works for me; it's taken from https://stackoverflow.com/a/64374604/1668200
... and use it for "normal" screenshots too. When taking a screenshot with `$client->takeScreenshot('screenshot.png');` the file is always created in `public`, right? So I'm suggesting to make this configurable, and...
Maybe this information could be merged with "Accessing To Hidden Text" into a new heading?
Haven't tested for Chrome.
When connecting to *remote* webpages, I'm sometimes getting this exception: > Curl error thrown for http DELETE to /session/5db262bc-961f-4cbf-9983-8d602f00d89a > Operation timed out after 30000 milliseconds with 0 bytes received...
With this being the HTML: ```html foobar ``` ... Symfony's `$domCrawler->text()` returns: ``` foobar ``` while Panther's `$pantherCrawler->text();` returns: ``` foo bar ```
With this in my `.env`: ``` PANTHER_NO_HEADLESS=true ``` ... I'm getting the exception > Process unexpectedly closed with status 1 ... on the second (!) line here: ```php $client =...
Loosely following up on https://github.com/symfony/panther/issues/431, here's another idea: Symfony's DomCrawler can be constructed by just passing the HTML: ```php $domCrawler = new DomCrawler('foo'); ``` I'm suggesting to allow the same...