Sign inSign up

deinchristian/rpi-selenium-node-chrome-debug

By deinchristian

Updated almost 8 years ago

Selenium Chrome Debug image for ARMv7(armhf) platforms

Image
0

837

deinchristian/rpi-selenium-node-chrome-debug repository overview

Dockerfile [ https://github.com/DeinChristian/rpi-docker-selenium ]

Based on

Chromium 70.0.3538.67

Important

Only works great with --no-sandbox argument for Chrome/Chromium. Selenium doesn't add this argument with starting Chromium. You have to add this on client side (Java example):

Instead of: DesiredCapabilities cap = DesiredCapabilities.chrome(); WebDriver driver = new RemoteWebDriver(url, cap);

Add ChromeOptions: DesiredCapabilities cap = DesiredCapabilities.chrome(); final ChromeOptions chromeOptions = new ChromeOptions(); chromeOptions.addArguments("--no-sandbox"); cap.setCapability(ChromeOptions.CAPABILITY, chromeOptions); WebDriver driver = new RemoteWebDriver(url, cap);

Tag summary

Content type

Image

Digest

Size

439.3 MB

Last updated

almost 8 years ago

docker pull deinchristian/rpi-selenium-node-chrome-debug