linux chrome + chromedriver

小萝卜忑·塘泥發表於2024-05-22

目錄
  • linux chrome + chromedriver
    • chrome
    • chromedriver

linux chrome + chromedriver

chrome

# 下載
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb

# 安裝
sudo dpkg -i google-chrome-stable_current_amd64.deb

# 檢視版本
google-chrome --version

chromedriver

# 注意找到和chrome版本對應的chromedriver
# 新版訪問 https://googlechromelabs.github.io/chrome-for-testing/#stable
wget 對應的chromedriver url
unzip chromedriver-linux64.zip
cd chromedriver-linux64
mv chromedriver /usr/bin

相關文章