I think you should be able to. There are some settings in C # that will help.
You need to install
doc.HtmlOptions.UseScript = true;
this will run javascript.
it might be worth setting a timeout to give it more time to complete the download
doc.HtmlOptions.Timeout = 10000;
and I always had better results with the gecko rendering engine.
doc.HtmlOptions.Engine = EngineType.Gecko;
source
share