Answers for "python html xpath selector"

1

get href scrapy xpath

# with xpath
//div[@class='image']/a[1]/@href

# using css
Link = response.css('span.title a::attr(href)').getall()
Posted by: Guest on May-05-2020
0

scrapy xpath contains class

//div[contains(concat(' ',normalize-space(@class),' '),' foobar ')]
Posted by: Guest on July-11-2020

Python Answers by Framework

Browse Popular Code Answers by Language