You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The library has been powerful! However, I am stuck on resolving a little caveat.
Given the below minimal example, how can I retrieve the text "Get me!"?
The given methods like .Text yields all the text in a given node, as shown here the first node <span id="id1000"> might contain a lot of other parts of the document, however I can be certain it will end with the next <h1>.
You're correct about the Text() method, that's how it works. There's no direct method to do what you want, but you can use the solution mentioned in #287 .
The library has been powerful! However, I am stuck on resolving a little caveat.
Given the below minimal example, how can I retrieve the text "Get me!"?
The given methods like .Text yields all the text in a given node, as shown here the first node
<span id="id1000">
might contain a lot of other parts of the document, however I can be certain it will end with the next<h1>
.The text was updated successfully, but these errors were encountered: