[Mac] selenium打开Chrome浏览器
生活随笔
收集整理的這篇文章主要介紹了
[Mac] selenium打开Chrome浏览器
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
在Mac電腦用python+selenium打開Chrome還遇到幾個問題,這里總結下,以防忘記,也可幫到別人。
前提:已安裝好python3,selenium
安裝chromedriver
1.先查看Chrome的版本,我這里是87
2. 下載與Chrome瀏覽器對應的chromedriver版本,下載鏈接:
https://sites.google.com/a/chromium.org/chromedriver/downloads
3. 把下載的文件解壓,把chromedriver.exe拷到/usr/local/bin/下。
- 打開Finder,Ctrl+Shift+G, 輸入/usr/local/bin/ 回車,進入到該目錄
- 把chromedriver.exe復制進來
4.添加chromedriver.exe到環境變量 - 打開命令行終端,輸入vim ~/.bash_profile
- 添加一行:export PATH=$PATH:/usr/local/bin/chromedriver,保存并退出
- 執行source ~/.bash_profile,讓修改生效
代碼
from selenium import webdriver driver = webdriver.Chrome() driver.get("http://www.baidu.com")如果你的Chrome安裝在默認路徑,這時運行代碼沒有問題。但是我運行的時候報錯:
selenium.common.exceptions.WebDriverException: Message: unknown error: cannot find Chrome binary研究發現是我的Chrome沒有安裝在默認路徑下,所以需要在代碼里指明Chrome的路徑,這里也可以再指明一次chromedriver.exe的路徑,代碼如下:
from selenium import webdriveroptions = webdriver.ChromeOptions() options.binary_location='/Google Chrome.app/Contents/MacOS/Google Chrome' # Chrome path chrome_driver_binary = "/usr/local/bin/chromedriver" # chromedriver path driver = webdriver.Chrome(chrome_driver_binary,chrome_options=options) driver.maximize_window() driver.get("http://www.baidu.com")總結
以上是生活随笔為你收集整理的[Mac] selenium打开Chrome浏览器的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: hyper-v 中虚拟机实现和物理机的复
- 下一篇: react视频笔记