来自响应的xpath给出None

时间:2019-07-15 13:00:59

标签: python scrapy pycharm

我正在尝试从页面获取产品名称:

https://www.michaelkors.com/ikat-print-tiered-shirtdress/_/R-US_MU98WXUC1Z\

以下是我使用过的语句:

product-name =response.xpath('//ul[@class="brand-desc-container"]/li/h1/text').get()

但是,产品名称为空。我已经与该网站进行了多次核对,并且类名和层次结构似乎是正确的。

1 个答案:

答案 0 :(得分:0)

product_name = response.xpath('//ul[@class="brand-desc-container"]/li[@class="product-name"]/h1/text()').get()