我正在使用scrapy,我想提取文本元素。这是我想要抓的网页 http://www.idealo.de/preisvergleich/OffersOfProduct/3131289_-vitodens-222-f-13-kw-viessmann.html
我正在使用以下xpath命令:
for sel in response.xpath('//tr'):
sel.xpath('td[@class="title"]/a[@class="offer-title link-2 webtrekk wt-prompt"]/text()').extract()
html代码中有产品(表中的行)可以正常使用。但是,有时会在文本之前直接嵌入javascript:
<td class="title">
<a class="offer-title link-2 webtrekk wt-prompt" ... >
<script type="text/javascript"> ... </script>
text I need
</a>
</td>
在这些情况下,我无法检索“我需要的文字”。
我还搜索并尝试了其他几个xpath选项,比如获取所有子节点。这些是我尝试的变种:
# item['longtitle'] = sel.xpath('td[@class="title"]/a[@class="offer-title link-2 webtrekk wt-prompt"]/script[@type="text/javascript"]/following-sibling::*').extract()
# item['longtitle'] = sel.xpath('td[@class="title"]/a[@class="offer-title link-2 webtrekk wt-prompt"]/script[@type="text/javascript"]/node()').extract()
item['longtitle'] = sel.xpath('td[@class="title"]/text()[0]').extract()
## item['longtitle'] = sel.xpath('td[@class="title"]/node()').extract()
## item['longtitle'] = sel.xpath('td[@class="title"]/text()').extract()
## item['longtitle'] = sel.xpath('td[@class="title"]/a[@class="offer-title link-2 webtrekk wt-prompt"]/node()').extract()
## item['longtitle'] = sel.xpath('td[@class="title"]/a[@class="offer-title link-2 webtrekk wt-prompt"]/text()').extract()
## item['longtitle'] = sel.xpath('td[@class="title"]/a[2]').extract()
## item['longtitle'] = sel.xpath('td[@class="title"]/a[@class="offer-title link-2 webtrekk wt-prompt"]/*').extract()
## item['longtitle'] = sel.xpath('td[@class="title"]/a[@class="offer-title link-2 webtrekk wt-prompt"]/script[@type="text/javascript"]/text()').extract()
但我一直都失败了。
我很乐意提供任何帮助。谢谢。
答案 0 :(得分:1)
对于存在<script>
标记的单元格,HTML节点中没有文本。通过快速检查他们的JavaScript(恰好是未经通知的),看起来这些单元格在JS运行时会填充文本。因此,你不会发疯,这些细胞肯定不会有任何文字。
要获取该文字,您需要关注该链接并从下一页获取标题(必须以某种方式为条件,因为并非每个链接都指向同一网站),或者您&# 39; ll需要使用一些JS引擎来拉页面,比如Selenium(pip install selenium
):
>>> from selenium import webdriver
>>> my_driver = webdriver.PhantomJS()
>>> my_driver.get(response.url)
>>> results = my_driver.find_elements_by_xpath('//table[contains(@class, "modular")]//tr[.//a]')
>>> for row in results:
... print row.find_element_by_xpath('./td[@class="title"]/a').text
Viessmann Vitodens 222-F Kompakt-Brennwerttherme, 13 kW, VT100, HE ohne Abgaspaket, ohne Anschluss-Set Viessmann
Viessmann Vitodens 222-F wahlweise 13,19, 26 oder 35 kW + Vitotronic 100 oder 200 (Regelung: Vitotronic 100, max. Wärmeleistung (KW): 13)
Paket Vitodens 222-W 13KW mit Vitotronic 200, Ladespeicher und Montagehilfe AP
Viessmann Vitodens 222-F nach Wahl, 13, 19 & 26 kW, Gas-Brennwert-Kompaktgeräte (Abgaspaket: Ohne, Anschluss-Set: Ohne, Regelung: Vitotronic 100, Heizkreispumpe: Hocheffizient, Leistung: 13kW)
Vitodens 222-F 13 kW mit Vitotronic 100 HC1B, hocheffizient
Viessmann Paket Vitodens 222-F 13 kW Vitotronic
Viessmann Paket Vitodens 222-F 13 kW Vitotronic
Viessmann Vitodens 222-F B2TA mit Vitotronic 100 3,2 - 13,0 kW
Viessmann Vitodens 222-F B2SA mit Vitotronic 100 3,2 - 13,0 kW
Viessmann 222-F Gastherme, 13 kW, B2SA010, Speicher innenbeheizt, Aufputz l/r Viessmann
Viessmann 222-F Gastherme, 13 kW, B2SA007, Speicher innenbeheizt, Aufputz oben Viessmann
Vitodens 222-F mit Vitotronic 200, Ladespeicher 3,2 - 13,0 kW
Viessmann Vitodens 222-F BS2A mit Vitotronic 200 3,2 - 13,0 kW
Vitodens 222-F 13KW mit Speicher mit Vitotronic 200 Kompaktgerät
Vitotronic 200 HO1B, Montagehilfe AP 3,2 - 13,0 kW, Aufputz-Montage
你有它。 15结果。
注意:此功能在下载中间件中显然会更好,以免对同一个网址发出多个请求,但我会留给您;)