New to Telerik Test Studio? Start a free 30-day trial
Handling FileDownload Dialogs
Updated on Apr 14, 2026
With FileDownload, you need to pass in the full path to the download location and how the dialog should be handled.
C#
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);To compile the above code include the following using:
using ArtOfTest.WebAii.Win32.Dialogs;