this is HTML that I want to find
<a href="/audio-books/type/computer/page/2/">»</a>
problem is » what is
»
I have tried:
response.xpath('//div[@class="wp-pagenavi"]/a[@title="»"]' )
and
response.xpath('//div[@class="wp-pagenavi"]/a[@title="»"]' )
but it is not working.
Is there some way to check for a value in XPath if the value is from character entities or extended characters?
I am trying to find lin to next page so I can to use
response.xpath('//div[@class="wp-pagenavi"]/a[@title="2"]' )
and this is working fine.