I have the following HTML structure
I want to extract all the links with the class:dev-link
<a class="dev-link" href="mailto:[email protected]" rel="nofollow" title='Photoshoot"</a>
I am using the below code to extract the link in scrapy
response.css('.dev-link::attr(href)').extract()
I am getting the correct output but is this the right way to use css selectors??