您好,登錄后才能下訂單哦!
樹莓派折騰selenium + chrome的示例分析,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
家中的樹莓派還是在繼續吃灰,難過。done
想做個自動登錄愛奇藝,優酷等網站嘗試公開賬號的系統。done.
想樹莓派 7x24小時的給我嘗試登錄公開的賬號,并記錄登錄成功的賬號。
一直嘗試折騰raspbian + selenium + firefox進行搭建,但失敗了。嘗試地址 作死折騰地址參考
使用raspbian + selenium + chrome 正確運行,跑得還不錯。
chrome 在樹莓派中為:chromium-browser
使用命令:
sudo apt-get install chromium-browser
如果報無法安裝 則需要添加源。
在文件 /etc/apt/sources.list 添加。
deb http://pipplware.pplware.pt/pipplware/dists/jessie/main/binary /
執行 chromium-browser --version 查看版本信息。
Chromium 48.0.2564.82 Built on Ubuntu 15.04, running on Raspbian 8.0
下載指定 :
chromium-chromedriver_48.0.2564.82-0ubuntu0.14.04.1.1108_armhf.deb
下載地址:
wget http://launchpadlibrarian.net/234968362/chromium-chromedriver_48.0.2564.82-0ubuntu0.14.04.1.1108_armhf.deb
如果其它的則需要進行搜索查詢。
打開 https://launchpad.net/
搜索 chromium-chromedriver armhf 版本號
選擇下載指定的deb文件。
下載完進行安裝
sudo dpkg -i chromium-chromedriver_48.0.2564.82-0ubuntu0.14.04.1.1108_armhf.deb
使用軟件
sudo apt-get install xvfb
安裝完后執行
Xvfb -ac :7 -screen 0 1280x1024x8 -extension RANDR -nolisten inet6 &
導入系統 (:7 和上一步的number號相同)
export DISPLAY=:7
建議加入到啟動項中。因為這個每次重啟都需要重新執行一次。
下載對應的 selenium-server-standalone-3.8.1.jar 官網
執行命令
java -Dwebdriver.chrome.driver=/usr/lib/chromium-browser/chromedriver -jar selenium-server-standalone-3.8.1.jar
OK 完成
#### 測試
DesiredCapabilities desiredCapabilities = new DesiredCapabilities(DesiredCapabilities.chrome()); WebDriver webDriver = new RemoteWebDriver(new URL("http://服務器地址:4444/wd/hub/"), desiredCapabilities); webDriver.get("http://www.baidu.com"); System.out.println(webDriver.getTitle()); webDriver.quit();
結果為,輸出 百度一上你就知道
虛擬桌面與啟動server一起的命令為:
DISPLAY=:7 xvfb-run -a -n 1 -l -s '-screen 0, 1920x1080x16' java -Dwebdriver.chrome.driver=/usr/lib/chromium-browser/chromedriver -jar selenium-server-standalone-3.8.1.jar
關于樹莓派折騰selenium + chrome的示例分析問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。