基于selenium-java封裝chrome、firefox、phantomjs實(shí)現(xiàn)爬蟲
2017年一直以來(lái)在公司負(fù)責(zé)爬蟲項(xiàng)目相關(guān)工程,主要業(yè)務(wù)有預(yù)定、庫(kù)存、在開發(fā)中也遇到很多問(wèn)題,隨手記錄一下,后續(xù)會(huì)持續(xù)更新。
chrome、firefox、phantomjs插件安裝和版本說(shuō)明 基于selenium-java封裝chrome、firefox、phantomjs實(shí)現(xiàn)爬蟲
項(xiàng)目下載地址
maven版本說(shuō)明
<!-- +++|selenium|+++ --> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> <version>3.5.1</version> </dependency> <!-- +++|phantomjsdriver|+++ --> <dependency> <groupId>com.github.detro.ghostdriver</groupId> <artifactId>phantomjsdriver</artifactId> <version>1.1.0</version> </dependency>
chrome插件配置
下載地址:chromedriver下載地址選擇本地系統(tǒng)對(duì)應(yīng)的chrome版本安裝,工程下面有一個(gè) 對(duì)應(yīng)的目錄是:Plugin/chromedriver_win32.zip,對(duì)應(yīng)chrmoe版本是Supports Chrome v60-62
直接運(yùn)行項(xiàng)目中示例
public class ChromeTest {public static void main(String[] args) { WebDriver webDriver = null; try { webDriver = WebDriverUtil.createChromeWebDriver('D:webdrvierchromedriver.exe');//修改路徑 webDriver.get('https://www.baidu.com/'); System.out.println(webDriver.getTitle()); } catch (Exception e) { e.printStackTrace(); } finally { if (webDriver != null) { webDriver.close(); } }}}
chrome配置插件是最簡(jiǎn)單的,linux上面只需要把插件換成linux版本即可
firefox
下載插件地址:geckodriver下載地址,選擇本地系統(tǒng)對(duì)應(yīng)的firefox版本安裝,工程下面有一個(gè) 對(duì)應(yīng)的目錄是:Plugin/geckodriver-v0.18.0-win64.zip,對(duì)應(yīng)firefox版本是Firefox Setup 50.0(64位)、其他版本沒(méi)有測(cè)試過(guò)
firefox下載地址、selenium-java版本和geckodriver版本更新迭代不一致,導(dǎo)致在搭建環(huán)境時(shí)很容易出現(xiàn)一系列問(wèn)題。
直接運(yùn)行項(xiàng)目中示例
public class FireFoxTest { public static void main(String[] args) { WebDriver webDriver = null; try { webDriver = WebDriverUtil.createFirefoxWebDriver('D:webdrvierFirefoxgeckodriver_18.exe'); webDriver.get('https://book.douban.com/tag/'); Set<String> tagSet = new HashSet<>(); //獲取豆瓣標(biāo)簽 List<WebElement> divWebElement = webDriver.findElements(By.cssSelector('#content > div > div.article > div:nth-child(2) > div')); for (WebElement webElement : divWebElement) {List<WebElement> aWebElement = webElement.findElements(By.cssSelector('a'));for (WebElement element : aWebElement) { tagSet.add(element.getText());} } System.out.println(tagSet); //點(diǎn)擊小說(shuō)標(biāo)簽 WebElement webElement = webDriver.findElement(By.cssSelector('#content > div > div.article > div:nth-child(2) > div:nth-child(1) > table > tbody > tr:nth-child(1) > td:nth-child(1) > a')); webElement.click(); System.out.println(webDriver.getTitle()); } catch (Exception e) { e.printStackTrace(); } finally { if (webDriver != null) {webDriver.quit();webDriver.close(); } } }}
phantomjs
下載插件地址phantomjs插件地址1、phantomjs插件地址2、下載有些慢。phantomjs是沒(méi)有界面的,所以只需要下載插件即可。
直接運(yùn)行項(xiàng)目中示例
public class PhantomjsTest {public static void main(String[] args) { WebDriver webDriver = null; try { webDriver = WebDriverUtil.createPhantomjsWebDriver('D:/webdrvier/phantomjs-1.9.8-windows/phantomjs.exe'); webDriver.get('https://www.baidu.com/'); System.out.println(webDriver.getTitle()); } catch (Exception e) { e.printStackTrace(); } finally { if (webDriver != null) { webDriver.close(); } }}}
到此這篇關(guān)于基于selenium-java封裝chrome、firefox、phantomjs實(shí)現(xiàn)爬蟲的文章就介紹到這了,更多相關(guān)selenium java封裝爬蟲內(nèi)容請(qǐng)搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!
相關(guān)文章:
1. Java類加載機(jī)制實(shí)現(xiàn)步驟解析2. python3實(shí)現(xiàn)往mysql中插入datetime類型的數(shù)據(jù)3. moment轉(zhuǎn)化時(shí)間戳出現(xiàn)Invalid Date的問(wèn)題及解決4. python爬蟲實(shí)戰(zhàn)之制作屬于自己的一個(gè)IP代理模塊5. PHP如何打印跟蹤調(diào)試信息6. python如何實(shí)現(xiàn)word批量轉(zhuǎn)HTML7. ASP腳本組件實(shí)現(xiàn)服務(wù)器重啟8. ASP中if語(yǔ)句、select 、while循環(huán)的使用方法9. ASP常用日期格式化函數(shù) FormatDate()10. html小技巧之td,div標(biāo)簽里內(nèi)容不換行
