こんにちは。Docker コンテナーで Selenium (または undetected_chromedriver) を使用する方法を示します。
Docker Python イメージを使用し、Web サイトを閲覧するために chromdriver と chromium を追加しています。
最初のステップは、requirements.txt ファイルを作成することです。個人的には、セレンを使用する undetected-chromedriver ライブラリを使用しています
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
2 番目のステップでは、コンテナで作業するための 2 つのオプションを追加する必要があります。
追加します:
これは 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")
以上がSelenium Python と Dockerの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。