New to Telerik Test Studio? Download free 30-day trial

Handling FileDownload Dialogs

With FileDownload, you need to pass in the full path to the download location and how the dialog should be handled.

DownloadDialogsHandler dialog = new DownloadDialogsHandler (Manager.ActiveBrowser, DialogButton.SAVE, @"D:\text.txt", Manager.Desktop); 

Manager.DialogMonitor.Start();

//Trigger the dialog.

Element.Click(false); 

dialog.WaitUntilHandled(30000);
Dim dialog As New DownloadDialogsHandler(Manager.ActiveBrowser, DialogButton.SAVE, "D:\text.txt", Manager.Desktop)

Manager.DialogMonitor.Start()

'Trigger the dialog.

Element.Click(False)

dialog.WaitUntilHandled(30000)

To compile the above code include the following using:

using ArtOfTest.WebAii.Win32.Dialogs;

In this article