I'm trying to get content from a strong text from the underwater site. When I open the site with browser I can see in the code the content however, using HtmlAgilityPack the content returns empty.
Example:
HtmlNodeCollection produtos = document.DocumentNode.SelectNodes("//article[@data-component='single-product']");
foreach (HtmlNode produto in produtos)
{
produto.SelectSingleNode(".//span[@class='sale price']/strong").InnerText.Trim();
}
Page request
HtmlWeb WebGet = new HtmlWeb ();
HtmlDocument page = webGet.Load("http://busca.submarino.com.br/busca.php?q=eletrodomesticos+e+eletroportateis&page=1")
I need to send POST, add parameters in load or another method to get the content?