public void ClickApplyAndWaitForFeature(string expectedTitle, string featureName)
 {
     DialogHelpers.PressButtonWithNameFromDialogWithName(
         GetMainWindowHWnd(),
         expectedTitle,
         "Apply"
         );
     VisualStudioInstance.Workspace.WaitForAsyncOperations(
         Helper.HangMitigatingTimeout,
         featureName
         );
 }
Example #2
0
 public void Click(string dialogName, string buttonName)
 => DialogHelpers.PressButtonWithNameFromDialogWithName(GetMainWindowHWnd(), dialogName, buttonName);
 public void ClickCancel(string expectedTitle)
 => DialogHelpers.PressButtonWithNameFromDialogWithName(GetMainWindowHWnd(), expectedTitle, "Cancel");