嗨,我展示如何在 Docker 容器中使用 selenium(或 unDetected_chromedriver)。
我正在使用 docker python 映像並新增 chromdriver 和 chromium 來瀏覽網站。
第一步是建立requirements.txt 檔案。就我個人而言,我使用 unDetected-chromedriver 庫,它需要 selenium
undetected-chromedriver==3.5.5
FROM python:3.10 COPY ../.. . RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - RUN sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list' RUN apt-get -y update RUN apt-get install -y chromium # install chromedriver RUN apt-get install -yqq unzip RUN wget -O /tmp/chromedriver.zip http://chromedriver.storage.googleapis.com/`curl -sS chromedriver.storage.googleapis.com/LATEST_RELEASE`/chromedriver_linux64.zip RUN unzip /tmp/chromedriver.zip chromedriver -d /usr/local/bin/ ENV DISPLAY=:99 RUN pip install -r requirements.txt CMD python -u app.py
例如,您可以在 docker-compose 中執行此 Dockerfile。
services: bot: build: selenium-test
在第二步驟中,我需要新增兩個在容器中工作的選項。
我補充:
這是一個使用 python 的範例
class App: options: uc.ChromeOptions driver: uc.Chrome def __init__(self): self.options = uc.ChromeOptions() self.options.arguments.extend(["--no-sandbox", "--disable-setuid-sandbox"]) self.driver = uc.Chrome(headless=True, use_subprocess=False)
然後您可以使用 unDetected_chromedriver 作為 selenium,如下所示:
self.driver.execute_script("console.log("Hello")
以上是硒 python 和 docker的詳細內容。更多資訊請關注PHP中文網其他相關文章!