タイトルの通りなのですが、どうやってもchromeが開いてくれません
https://oliversi.com/2019/01/07/python-docker-selenium-chrome/
コードはこちらを参考にしています
Dockerfile
FROM python:3 RUN apt-get update && apt-get install -y unzip #install google-chrome RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add && \ echo 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main' | tee /etc/apt/sources.list.d/google-chrome.list && \ apt-get update && \ apt-get install -y google-chrome-stable #install selenium RUN pip install selenium #install ChromeDriver ADD https://chromedriver.storage.googleapis.com/81.0.4044.20/chromedriver_linux64.zip /opt/chrome/ RUN cd /opt/chrome/ && \ unzip chromedriver_linux64.zip ENV PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/chrome
test.py
from selenium import webdriver from selenium.webdriver.common.keys import Keys import time def _main(): options = webdriver.ChromeOptions() options.add_argument('--headless') options.add_argument('--no-sandbox') driver = webdriver.Chrome(options=options) driver.get('https://www.google.co.jp/') search = driver.find_element_by_name('q') search.send_keys('Python') search.send_keys(Keys.RETURN) time.sleep(3) driver.save_screenshot('search_results.png') driver.quit() if __name__ == '__main__': _main()
docker build -t python-selenium-chrome .
docker run -it --rm -v $(pwd):/root python-selenium-chrome bash
cd /root
python test.py
としても何も反応がないです、どこが間違っているでしょうか?
回答1件
あなたの回答
tips
プレビュー