xpath get href attribute value scrapy code example
Example 1: get href scrapy xpath
# with xpath
//div[@class='image']/a[1]/@href
# using css
Link = response.css('span.title a::attr(href)').getall()
Example 2: scrapy xpath href contains text
'//a[contains(@href,"/Best-Sellers-Health-Personal-Care")]'