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
@miguelcrespo I looked into this a little bit and found a trail that leads all the way back to the golang html package.
Colly relies on goquery for the DOM parsing where I found this issue mentioning the same problem you are having. This issue references An issue in Cascadia which is the library used to compile CSS queries. It seems to be the nature of the net/html parser, it converts the contents of a noscript tag into a text node, so nothing inside a noscript elem is searchable via CSS queries.
Hi, I am having a problem when I try to get the data inside a noscript tag. I am trying with this url https://stackoverflow.com/questions/20170275/how-to-find-a-type-of-an-object-in-go when I use the following code
It prints something but when I go inside a noscript tag
or
noscript
Nothing is printed even when the page actually have an image inside a noscript tag
Any idea why is this happening?
The text was updated successfully, but these errors were encountered: