How can Scrapy be used to select the text of an element that has a particular attribute name and value?
For example,
<span property="city">Montreal</span>
I tried the following but received a None
response.css('.span[property="city"]::text').extract_first()