环境:doker/selenium/standalone-chrome:89.0
试试https://github.com/SeleniumHQ/docker-selenium。在
它安装了python:
$ docker run selenium/standalone-chrome python3 version
Python 3.5.2
说明书上说你从
编辑:
为了让selenium在python中运行,需要安装下面的包。创建此
Dockerfile
:
FROM selenium/standalone-chrome
USER root
RUN apt-get install python3-distutils
RUN wget https://bootstrap.pypa.io/get-pip.py
RUN python3 get-pip.py
RUN python3 -m pip install selenium
然后你可以用
docker build . -t selenium-chrome && \
docker run -it selenium-chrome python3
与普通的
python
docker映像相比的优势是,您不需要安装chromedriver本身,因为它来自
selenium/standalone-chrome
。在
版权归原作者 alvinToffler 所有, 如有侵权,请联系我们删除。