1

I am trying to download PDF file using Watin but I can't download file. I have wrote following code but it doesn't work. Actual scenario is atteched with image file. please click on link.

IE ie = IE.AttachToIE(Find.ByUrl("Url here..."));--Its give error.

FileDownloadHandler handler = new FileDownloadHandler(fullFileName);
using (new UseDialogOnce(ie.DialogWatcher, handler))
{
    lnkDoc.Click();
    try
    {
        handler.WaitUntilFileDownloadDialogIsHandled(30);
        handler.WaitUntilDownloadCompleted(100);
    }
    catch
    {
    }
}
Dour High Arch
  • 21,513
  • 29
  • 75
  • 90

1 Answers1

1

This new window you try to attach to is showing a PDF. WatiN can't attach to these kind of windows.

Jeroen van Menen
  • 2,418
  • 1
  • 15
  • 11