I need to parse the page source as rendered by IE.
I can use the following simple code to open an IE to a URL.
(The BrowserWinodw type is from the Visual Studio Coded UI test framework.)
BrowserWindow bw = BrowserWindow.Launch(url);
How to get the page source from the IE window?
Thanks!