How to extract raw text with a Scrapy (Parsel) selector? By raw, I mean an escaped piece of text with e.g. " not turning into ".
Here's how to reproduce:
>>> Selector('<p>"</p>').css('p::text').get()
'"'
Expected output: "
Actual output: "