I'm trying to scrape a page that consist of only I have tried a couple of things, nodes, child selectors, etc, but no hail. Noteworthy mention is |
Replies: 2 comments 2 replies
|
It seems like that the unclosed link element is treated as an empty element as in: <link /> https://example.com/etc/um_innervation_painfully.dump/index/This means that the link you are looking for is a child to the To still extract the link you could do the following:
var link = release
.text() // the all text contents
.split("\n")[4] // split the text by new line character and select the 5th (zero based) line
.trim() // remove the whitespace around that line
console.log(link) // https://example.com/etc/um_innervation_painfully.dump/index/ |
|
The usage of If I add URL pagination #38 and use Furthermore, it also prevents other modes of pagination, like It does NOT affect single page On your top of mind, any idea what might be causing this issue? |
It seems like that the unclosed link element is treated as an empty element as in:
This means that the link you are looking for is a child to the
<item>element.To still extract the link you could do the following: