I am trying to scape data from this site and it has this structure
<div>
<b>insert bold here</b>
important text
<a href="#">link here</a>
</div>
and I need to access the "important text" which chrome dev tools shows #text.
I've tried to remove the and but I always end up getting a result of undefined when I did the .text() method.
I've tried looping over the children, contents, etc.