Julian Seeger

Results 18 comments of Julian Seeger

Similar exception on Ubuntu 14.04.4 LTS and php5.6 in a vagrant box with virtualbox and nfs. Occurs while running tests: ``` [exec] exec(): Unable to fork [/bin/grep --fixed-strings --directories=recurse --devices=skip...

Same for GCP/GKE: ``` .../lib/python3.9/site-packages/kubernetes/client/models/v1_pod_readiness_gate.py", line 78, in condition_type raise ValueError( ValueError: Invalid value for `condition_type` (cloud.google.com/load-balancer-neg-ready), must be one of ['ContainersReady', 'Initialized', 'PodScheduled', 'Ready'] ``` This is about pod...

This issue was fixed in https://github.com/sebastianbergmann/phpunit-selenium/pull/289 So the correct domain should be opened before the cookie is set.

Bzw.: I think 2.32.0 is the supported Version. You seem to be using 2.33.0 Am 24.07.2013 14:59 schrieb "Jens-André Koch" [email protected]: > PHPUnit_Extensions_Selenium2TestCase_WebDriverException: chrome not > reachable > > (Driver...

You can pass an array like array('chromeOptions' => array('args' => array('no-sandbox'))) but I would not recommend this because the chromedriver seems to be the only webdriver that configures the Browser...

Doesn't work on my project: If the phpunit_coverage.php is not available under the $browserUrl, then it doesn't work. The $coverageScriptUrl can be absolute, because it is called via file_get_contents, but...

Afaik, the "setBrowserUrl"-Command only sets some kind of base-url. Did you try calling $this->url('/') afterwards?

I agree on that. Mostly at every project, I implement some kind of an init method that acts like a setUp, but is called when the session is available. I...

Thx. A separated method somehow feels cleaner ;) So what about the setBrowserPrefix?

As far as I understood the idea (and as far as I would like to use it), it could work like that: ``` php public function setUp() { $this->setBrowser('firefox'); $this->setBrowserPrefix('http://localhost');...