Dominik Frankowicz
Dominik Frankowicz
@loxK @gjm @jacobseated @stadja Please dont torture yourself and just use docker to manage multiple projects on same machine - then each such project you can have separate OS version,...
> 1. I run symfony php vendor/bin/phpunit which will run all tests (some unit tests, integration tests, EndToEnd tests with Panther) => No problem > 2. I run a specific...
> hence the idea of --testsuite, but I cannot understand why this option is the problem unfortunately me too :/ > but suddenly the order of passage is not respected...
Not related to panther, but in such situation i used following solution: 1. assign one of the group for each test class: "unit", "integration", "end2end" 2. for each group run...
have you tried https://stackoverflow.com/questions/31324981/how-to-access-host-port-from-docker-container/43541732#43541732 or other answers from there?
@keldrox can you paste whole output of command so people can see what is the whole error? (instead of only partial screeenshot / gif) Do you try to use this...
@jose-sampedro do you also registered this extension as mentioned in: https://github.com/symfony/panther#interactive-mode > To use the interactive mode, the [PHPUnit extension](https://github.com/symfony/panther#registering-the-phpunit-extension) must be registered.
@albaninho in Dockerfile try to also install following apt packages : `libzip-dev`, `zlib1g-dev` and php` zip` extension Also try without `--disable-dev-shm-usage` option
Try to check which process is using that port ( https://askubuntu.com/questions/278448/how-to-know-what-program-is-listening-on-a-given-port etc )
can you check what is the type of `$crawler->filterXPath('//input[@id="password"]')` ? If is something related to "form field" then maybe can you try this `getValue()` method on it? : https://github.com/symfony/panther/blob/main/src/DomCrawler/Field/FormFieldTrait.php#L47 But...