使用Selenium + Scrapy

使用Selenium + Scrapy,第1张

使用Selenium + Scrapy

response
您要分配给您的对象
ItemLoader
scrapy
响应,而不是Selenium。

我建议

Selector
使用selenium返回的页面源创建一个新的页面:

from scrapy import Selector...selenium_response_text = driver.page_sourcenew_selector = Selector(text=selenium_response_text)l = ItemLoader(item=PropertiesItem(), selector=new_selector)...

这样,

add_xpath
它将从该响应结构中获取信息,而不是无用(您实际上不需要)。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5462780.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存