我在Linux平台上使用python 2.7.2
中的splinter 0.7.3
模块,使用默认的Firefox浏览器在网站上抓取目录列表。
这段代码通过点击html中的'Next'链接来遍历已分页的web列表。
links = True
i = 0
while links:
with open('html/register_%03d.html' % i, 'w') as f:
f.write(browser.html.encode('utf-8'))
links = browser.find_link_by_text('Next')
print 'links:', links
if links:
links[0].click()
i += 1
我知道链接正在工作,因为我看到的输出看起来像这样:
links: [<splinter.driver.webdriver.WebDriverElement object at 0x2e6da10>, <splinter.driver.webdriver.WebDriverElement object at 0x2e6d710>]
links: [<splinter.driver.webdriver.WebDriverElement object at 0x2e6d5d0>, <splinter.driver.webdriver.WebDriverElement object at 0x2e6d950>]
links: [<splinter.driver.webdriver.WebDriverElement object at 0x2e6d710>, <splinter.driver.webdriver.WebDriverElement object at 0x2e6dcd0>]
links: []
当html保存在每个页面使用f.write(browser.html.encode('utf-8'))
它的第一页工作得很好。在随后的页面上,虽然我可以看到在Firefox中呈现的页面,但html/regiser_...html
文件是空的,或者缺少body标记,如下所示:
<!DOCTYPE html>
<!--[if lt IE 7]> <html prefix="og: http://ogp.me/ns#" class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en-gb"> <![endif]-->
<!--[if IE 7]> <html prefix="og: http://ogp.me/ns#" class="no-js lt-ie9 lt-ie8" lang="en-gb"> <![endif]-->
<!--[if IE 8]> <html prefix="og: http://ogp.me/ns#" class="no-js lt-ie9" lang="en-gb"> <![endif]-->
<!--[if gt IE 8]><!-->
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-gb" class="no-js" prefix="og: http://ogp.me/ns#"><!--<![endif]--><head>
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible" />
...
</style>
<script src="/media/com_magebridge/js/frototype.min.js" type="text/javascript"></script></head></html>
这是从splinter保存html的已知特性吗?有更好的方法吗?
这看起来真的像一个时间问题- 当页面没有完全加载时,您正在获取页面源代码。有几种方法可以解决这个问题:
-
等待
body
出现:browser.is_element_present_by_tag("body", wait_time=5)
-
增加页面加载超时-在初始化
browser
对象之后设置:browser.driver.set_page_load_timeout(10) # 10 seconds