我是python和scrapy的新手,我想从网站抓取银行名称。我正在使用scrapy,但我很困惑在response.css中使用什么类名(' _______ :: text')。extract()enter image description here来获取bank的名称。 我已经包含了页面检查的截图。 enter image description here
答案 0 :(得分:1)
正如您所看到的,a
元素中没有类。因此,您可以在xpath选择器中使用父级。
response.xpath('.//table[@class="tablebg"]//td[2]/a/text()')
此选择器可能包含一些拼写错误,但如果您提供网站链接,下次会更好。