Is there anyway to use such selector in scrapy?
I tried following but getting index out of range error
response.css('.breadcrumbs > ul > li:not[class^="home"]').extract()
You should enclose not
expression in brackets like this
response.css('.breadcrumbs > ul > li:not([class^="home"])').extract()
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With