

# Install Selenium RUN pip install -upgrade pip \īuild it for multiplatform. # bullseye: worked # buster: got an error "lsb_release: command not found" # I don't know the reason ARG VERSION=.110-0ubuntu0.18.04.1 Search = driver.find_element(By.NAME, 'q') Options.add_argument( '-no-sandbox') # An error will occur without this lineĭriver = webdriver.Chrome(options=options) Sample Script from selenium import webdriverįrom import Byįrom import Keys #! /bin/bash # Update on 0 # dependencies deb files of chromium-browser(depencies also needed) and chromium-chromedriver from the above URL. Install chromium-browser and chromium-chromedriverĭownload. The following tasks should be done in the container.


That's why I'm writing how to manage to do Selenium on the device. I tried another way, which is downloading chromedriver from , I couldn't because any image of SeleniumHQ/docker-selenium doesn't support arm64. When I tried to use Selenium on RaspberryPi whose OS is Ubuntu,
