docker-chromedriver icon indicating copy to clipboard operation
docker-chromedriver copied to clipboard

Docker container for creating ChromeDriver servers

Results 8 docker-chromedriver issues
Sort by recently updated
recently updated
newest added

Supervisor install no longer works otherwise.

With the most recent update to the `latest` tag, our tests started failing: ``` chrome Tests failed: {"sessionId":"5375d30bf345d4c1d7183028f15af95a","status":13,"value":{"message":"unknown error: Chrome failed to start: crashed\n (Driver info: chromedriver=2.25.426924 (649f9b868f6783ec9de71c123212b908bf3b232e),platform=Linux 4.4.27-moby x86_64)"}}...

This PR add's multi-arch support with `amd64` and `arm32v6` support. It is configure-able like so ``` docker build -t "chromedriver:local" --build-arg ARCH=arm32v6 . ``` This will not touch the default...

unable to start the chrome: Logs are as follows: M-C02W329QHV2R:dashfrontendtest spatchava$ docker run --name chromedriver -p 127.0.0.1::4444 -e CHROMEDRIVER_WHITELISTED_IPS='' robcherry/docker-chromedriver:latest 2018-06-18 22:26:32,512 CRIT Supervisor is running as root. Privileges were...

Testing out this image together with Codeception. Connections to `/wd/hub` seem to hang unless `--cap-add SYS_ADMIN` is added when container is started. Might be worth noting in README and on...

Just a remark because it confused me: The combinations of port and URL base that I have seen so far are: URL base | Port | Used by -- |...

Getting the following stacktrace when I try to execute nightwatch tests ``` INFO Got sessionId from selenium 60486302460536b6afcc4bd6f0d6074b LOG → Completed command pause (1004 ms) INFO Request: POST http://chromedriver:4444/session/60486302460536b6afcc4bd6f0d6074b/url -...

I am using PHP testing framework, [Codeception](http://codeception.com/docs/modules/WebDriver), to run tests on chromedriver, which is in the container made from this image. After updating to latest image version **04d52f73c6a0**, my tests...