We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have following node:
<ul class="list clearfix"> <li> <div> <a href=www.example.com/asda"> <img src="..sadsada./ssa/3.jpg"> </a> </div> </li> <li> <div> <a href=www.example.comsdsds/sds"> <img srr="..sadsada./ssa/2.jpg"> </a> </div> </li> <li> <div> <a href=www.example.com/sdds"> <img src="..sadsada./ssa/1.jpg"> </a> </div> </li> </ul>
How do I get all the img src?
matcher := func(n *html.Node) bool { if n.DataAtom == atom.A && n.Parent != nil && n.Parent.Parent != nil && n.Parent.Parent.Parent != nil && n.Parent.Parent.Parent.Parent != nil { return scrape.Attr(n.Parent.Parent.Parent.Parent, "class") == "list clearfix" } return false } images := scrape.FindAll(root, matcher)
Doesn't work for me.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have following node:
How do I get all the img src?
Doesn't work for me.
The text was updated successfully, but these errors were encountered: