プログラムで[保存]ボタンをクリックして、ウィンドウの[保存]ダイアログボックスが表示されることをテストしようとしています。私は、assertステートメント以外のすべてを持っています。カスタムSaveDialogBoxがユーザーに表示されることを表明する方法がわかりません。
[test]
public void Method_WhenThePersonIsNotfound_ClickingTheButtonSavesLetterToWordDocument
{
//arrange
CreateNewPage(); //creates IE window enters fields and clicks submit on first page.
//act
this.InternetExplorerDriver.FindElementById("SaveForm").Click(); //Clicks my button that should produce a save dialog box.
//assert
//Assert statement to verify that when button was clicked the save dialog box to save the letter in word appears.