搭建 springboot selenium 網頁檔案轉圖片環境
阿新 • • 發佈:2020-08-07
1. 環境準備
需要有 chrome 瀏覽器 + chrome driver + selenium 客戶端
離線 chrome 下載地址
# 64位 linux 系統 https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm # 64位 weindow 系統 http://www.google.cn/chrome/browser/desktop/index.html?standalone=1&platform=win64 # 32位 weindow 系統 http://www.google.cn/chrome/browser/desktop/index.html?standalone=1&platform=win# 官網 chromedriver http://chromedriver.storage.googleapis.com/index.html # 淘寶 chromedriver 映象 https://npm.taobao.org/mirrors/chromedriver/
說明:chrome 和 chromedriver 版本需要一致
2. 將 chromedriver 放到 chrome 安裝目錄下
3. 在 springboot 專案中引入 selenium 依賴
<dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> <version>3.141.59</version> </dependency>
4
參考文獻:
https://blog.csdn.net/l707268743/article/details/80942246
https://www.cnblogs.com/sqy123/p/9057348.html#_labelTop
https://www.cnblogs.com/lfri/p/10542797.html