Hi,
pls can somebody help me with this problem?
Im trying to start a process in iexplore window from console and need to wait till the page is loaded and if done I need to close the window, but I dont know how. Can you help me?
Here´s the part of the code:
try
{
Process OpenPage = new Process();
OpenPage.StartI nfo.FileName = "iexplore.e xe";
OpenPage.StartI nfo.Arguments = target;
OpenPage.Start( );
OpenPage.WaitFo rInputIdle();
OpenPage.Kill() ;
}
Thank you
pls can somebody help me with this problem?
Im trying to start a process in iexplore window from console and need to wait till the page is loaded and if done I need to close the window, but I dont know how. Can you help me?
Here´s the part of the code:
try
{
Process OpenPage = new Process();
OpenPage.StartI nfo.FileName = "iexplore.e xe";
OpenPage.StartI nfo.Arguments = target;
OpenPage.Start( );
OpenPage.WaitFo rInputIdle();
OpenPage.Kill() ;
}
Thank you
Comment