如何在python中使用Selenium和Beautifulsoup解析网站?

时间:2012-12-19 20:06:26

标签: python selenium beautifulsoup

编程新手,并想出如何使用Selenium导航到我需要去的地方。我想现在解析数据,但不知道从哪里开始。有人能握住我的手一秒钟并指出我正确的方向吗?

任何帮助表示赞赏 -

3 个答案:

答案 0 :(得分:90)

假设您在要解析的页面上,Selenium将源HTML存储在驱动程序的page_source属性中。然后,您可以将page_source加载到BeautifulSoup,如下所示:

In [8]: from bs4 import BeautifulSoup

In [9]: from selenium import webdriver

In [10]: driver = webdriver.Firefox()

In [11]: driver.get('http://news.ycombinator.com')

In [12]: html = driver.page_source

In [13]: soup = BeautifulSoup(html)

In [14]: for tag in soup.find_all('title'):
   ....:     print tag.text
   ....:     
   ....:     
Hacker News

答案 1 :(得分:15)

由于你的问题并不是特别具体,这是一个简单的例子。要做更有用的事情,请阅读BS docs。您还可以在SO中找到大量的硒(和BS)用法示例。

from selenium import webdriver
from bs4 import BeautifulSoup

browser=webdriver.Firefox()
browser.get('http://webpage.com')

soup=BeautifulSoup(browser.page_source)

#do something useful
#prints all the links with corresponding text

for link in soup.find_all('a'):
    print link.get('href',None),link.get_text()

答案 2 :(得分:2)

您确定要使用Selenium吗?出于这个原因,我使用PyQt4,它非常强大,你可以做你想做的事。

我可以给你一个示例代码,我刚才写的,只需更改网址就可以了:

#! /usr/bin/env python2.7

from PyQt4.QtCore import *
from PyQt4.QtGui import *
from PyQt4.QtWebKit import *
from bs4 import BeautifulSoup
import sys, signal

class Browser(QWebView):
    def __init__(self):
        QWebView.__init__(self)
        self.loadProgress.connect(self._progress)
        self.loadFinished.connect(self._loadFinished)
        self.frame = self.page().currentFrame()

    def _progress(self, progress):
        print str(progress) + "%"

    def _loadFinished(self):
        print "Load Finished"
        html = unicode(self.frame.toHtml()).encode('utf-8')
        soup = BeautifulSoup(html)
        print soup.prettify()
        self.close()

if __name__ == "__main__":
    app = QApplication(sys.argv)
    br = Browser()
    url = QUrl('http://web site that can contain javascript.com')
    br.load(url)
    br.show()
    if signal.signal(signal.SIGINT, signal.SIG_DFL):
        sys.exit(app.exec_())
    app.exec_()