在docker容器中运行selenium chrome浏览器

时间:2019-03-13 17:02:30

标签: selenium docker docker-compose selenium-chromedriver

我正在尝试将selenium chrome驱动程序与docker一起使用。不幸的是我无法正常工作。当我执行docker-compose来启动容器时,它会因

崩溃
"container_name exited with code 1" error. 

使用docker logs -t -f我能够得到以下错误。

selenium.common.exceptions.WebDriverException: 
Message: unknown error: Chrome failed to start: exited abnormally

我知道关于此问题还有其他堆栈溢出问题,但是所有解决方案都涉及添加chrome选项。我已经尝试添加各种Chrome驱动程序选项,但没有任何运气。请参见下面的代码。

options = webdriver.ChromeOptions()
options.add_argument('--proxy-server=socks5://localhost:9050')
options.add_argument('disable-infobars')
options.add_argument('--disable-extensions')
options.add_argument('--no-sandbox')
options.add_argument('--disable-setuid-sandbox')
options.add_argument('--headless')
options.add_argument('--start-maximized') 
options.add_argument('window-size=1200x800')
options.add_argument('--disable-gpu')
driver = webdriver.Chrome(options=options, desired_capabilities=caps)

我尝试过上述代码的各种组合,但是没有碰到运气。我也尝试注释掉'proxy = server'选项并运行容器,但出现相同的错误。当我运行普通的python代码时,它可以正常工作而没有任何错误。

以下是我的Dockerfile的相关部分。

# Extra suff chrome driver needs
RUN apt-get install -y libglib2.0-0=2.50.3-2 \
libnss3=2:3.26.2-1.1+deb9u1 \
libgconf-2-4=3.2.6-4+b1 \
libfontconfig1=2.11.0-6.7+b1

# need this for chrome driver, not just ui 
RUN apt-get install -y wget xvfb unzip

# Set up the Chrome PPA
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
RUN echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list

# Update the package list and install chrome
RUN apt-get update -y
RUN apt-get install -y google-chrome-stable

# Set up Chromedriver Environment variables
ENV CHROMEDRIVER_VERSION 2.19
ENV CHROMEDRIVER_DIR /chromedriver
RUN mkdir $CHROMEDRIVER_DIR

# Download and install Chromedriver
RUN wget -q --continue -P $CHROMEDRIVER_DIR "http://chromedriver.storage.googleapis.com/$CHROMEDRIVER_VERSION/chromedriver_linux64.zip"
RUN unzip $CHROMEDRIVER_DIR/chromedriver* -d $CHROMEDRIVER_DIR

# Put Chromedriver into the PATH
ENV PATH $CHROMEDRIVER_DIR:$PATH

1 个答案:

答案 0 :(得分:1)

您正面临所使用的chromedriver和chrome浏览器版本之间的不兼容性。

这是有问题的两行:

RUN apt-get install -y google-chrome-stable

以上内容表示您将下载最新的Chrome浏览器。

ENV CHROMEDRIVER_VERSION 2.19

但是,在这里,您专门使用的是ChromeDriver v2.19,这是一个非常老的版本。

您需要使用兼容的版本,通常可以在发行说明中找到它们: http://chromedriver.chromium.org/downloads