Skip to content

Instantly share code, notes, and snippets.

@seleniumgists
Created July 29, 2020 13:41
Show Gist options
  • Save seleniumgists/480805d912a53a95f506081f32d75a50 to your computer and use it in GitHub Desktop.
Save seleniumgists/480805d912a53a95f506081f32d75a50 to your computer and use it in GitHub Desktop.
generated automatically from #selenium on seleniumhq slack
WARN [SpanWrappedHttpHandler.execute] - Unable to execute request: Unable to find provider for session: Capabilities {browserName: chrome, goog:chromeOptions: {args: [--incognito, --no-sandbox, --disable-dev-shm-usage], extensions: []}}```
and also errors like this in the actual test failure log:
`NettyHttpHandler request execution error`
`Run 1: Unable to find provider for session: Capabilities {browserName: chrome, goog:chromeOptions: {args: [--incognito, --no-sandbox, --disable-dev-shm-usage], extensions: []}}`
This is my `docker-compose.yml` file:
```version: "3"
services:
selenium-hub:
image: selenium/hub:4.0.0-alpha-6-20200721
container_name: selenium-hub
ports:
- "<PORT>:4444"
chrome:
image: selenium/node-chrome:4.0.0-alpha-6-20200721
volumes:
- /dev/shm:/dev/shm
depends_on:
- selenium-hub
environment:
- HUB_HOST=selenium-hub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment