Selenium Chrome Debug image for ARMv7(armhf) platforms
837
Dockerfile [ https://github.com/DeinChristian/rpi-docker-selenium ]
Chromium 70.0.3538.67
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);
Content type
Image
Digest
Size
439.3 MB
Last updated
almost 8 years ago
docker pull deinchristian/rpi-selenium-node-chrome-debug