Is it possible with Scrapy to combine Xpath and CSS selectors in an Item Loader?
I admit, until know, I've avoided Item Loaders for simplicity, but I'm at the point now where I feel I need them for maintainability.
To date, I've been chaining Xpath and CSS selectors together for some of my selectors, such as sel.xpath('.//td[@class="desc"]').css('.title'). I do this as there are a mixture of additional classes mixed in with title, or title doesn't have even spacing (also, it's the recommended way in the documentation).
With a loader, I'm only seeing a .add_xpath() method and a separate .add_css() method. Is there a "proper" way to do this?