Using scrapy for web scraping, I encountered the following html structure:
<a class="pointy" title="Rating: 9 / 10">dont select this text</a>
<a class="pointy" title="Rating: 1 / 10">or this text</a>
Q: How can I extract the title name from the HTML without prior knowledge of its exact content? For instance, in this scenario, "Rating: 9/10" and "Rating: 1/10"?