I am trying to get data from a website an C#:
https://www.trendyol.com/TRENDYOLMiLLA---Trend-Kombinler/ButikDetay/168286
It looks like this website gets the data from an ajax call after the page loads. When I call this code:
using (var client = new WebClient())
{
return client.DownloadString(URL);
}
It gets the base HTML but does not process the ajax call and fill in the data. Is there a way to get the final page after rendering from code?