How to crawl text embedded in tooltips using scrapy

Viewed 34
1 Answers

These tooltips are just title attributes

You tagged you question as javascript so:

console.log(document.querySelector('p').title)
<p title="hidden text">Some text with tooltip</p>

Related