搭建 springboot selenium 網(wǎng)頁(yè)文件轉(zhuǎn)圖片環(huán)境的詳細(xì)教程
1. 環(huán)境準(zhǔn)備
需要有 chrome 瀏覽器 + chrome driver + selenium 客戶端
離線 chrome 下載地址
# 64位 linux 系統(tǒng)https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm# 64位 weindow 系統(tǒng)http://www.google.cn/chrome/browser/desktop/index.html?standalone=1&platform=win64# 32位 weindow 系統(tǒng)http://www.google.cn/chrome/browser/desktop/index.html?standalone=1&platform=win# 官網(wǎng) chromedriverhttp://chromedriver.storage.googleapis.com/index.html# 淘寶 chromedriver 鏡像https://npm.taobao.org/mirrors/chromedriver/
說明:chrome 和 chromedriver 版本需要一致
1.2 查看 chrome 版本信息。在chrome瀏覽器輸入以下地址
chrome://version/
1.3 例如我選擇的是
2. 將 chromedriver 放到 chrome 安裝目錄下
3. 在 springboot 項(xiàng)目中引入 selenium 依賴
<dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> <version>3.141.59</version> </dependency>
4
參考文獻(xiàn):
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
到此這篇關(guān)于搭建 springboot selenium 網(wǎng)頁(yè)文件轉(zhuǎn)圖片環(huán)境的詳細(xì)教程的文章就介紹到這了,更多相關(guān)springboot selenium 網(wǎng)頁(yè)文件轉(zhuǎn)圖片環(huán)境內(nèi)容請(qǐng)搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!
相關(guān)文章:
1. ASP.NET MVC把數(shù)據(jù)庫(kù)中枚舉項(xiàng)的數(shù)字轉(zhuǎn)換成文字2. 用xslt+css讓RSS顯示的跟網(wǎng)頁(yè)一樣漂亮3. 《CSS3實(shí)戰(zhàn)》筆記--漸變?cè)O(shè)計(jì)(一)4. .NET擴(kuò)展方法使用實(shí)例詳解5. 測(cè)試模式 - XSL教程 - 56. 讓chatgpt將html中的圖片轉(zhuǎn)為base64方法示例7. html5手機(jī)觸屏touch事件介紹8. CSS3實(shí)現(xiàn)動(dòng)態(tài)翻牌效果 仿百度貼吧3D翻牌一次動(dòng)畫特效9. ASP.NET Core自定義中間件的方式詳解10. ASP.NET泛型三之使用協(xié)變和逆變實(shí)現(xiàn)類型轉(zhuǎn)換
