How do I get all divs that have a class = 'round' and a id = 'footer' in the htmlagilitypack?
I thought I could do th below but it does not work?
Dim s As HtmlNodeCollection = htmlDoc.DocumentNode.SelectNodes("//div[@class ='round' and @id='footer']")
The XPath looks right to me, I would double check the HTML to be sure it includes such element.