Example #1
0
 public NewItemDialog(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
     _app = app;
 }
Example #2
0
        public static AzureWebSitePublishDialog FromDte(VisualStudioApp app)
        {
            var publishDialogHandle = app.OpenDialogWithDteExecuteCommand("Build.PublishSelection");

            return(new AzureWebSitePublishDialog(app, AutomationElement.FromHandle(publishDialogHandle)));
        }
Example #3
0
 public NewProjectDialog(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
 }
Example #4
0
 public AutomationDialog(VisualStudioApp app, AutomationElement element)
     : base(element)
 {
     App            = app;
     DefaultTimeout = TimeSpan.FromSeconds(10.0);
 }
Example #5
0
 public CredentialsDialog(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
 }
Example #6
0
 public abstract ToolWindowPane ActivateInteractiveWindow(VisualStudioApp app, string executionMode);
Example #7
0
 public PythonTestExplorer(VisualStudioApp app, AutomationElement element, AutomationWrapper searchBarTextBox)
     : base(element)
 {
     _app       = app;
     _searchBar = searchBarTextBox ?? throw new ArgumentNullException(nameof(searchBarTextBox));
 }
Example #8
0
 public SelectFolderDialog(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
 }
 public AzureImportSubscriptionDialog(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
 }
Example #10
0
 public void CheckMessageBox(MessageBoxButton button, params string[] text)
 {
     VisualStudioApp.CheckMessageBox(button, text);
 }
Example #11
0
 public ToolsOptionsDialog(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
 }
Example #12
0
 public void CheckMessageBox(params string[] text)
 {
     VisualStudioApp.CheckMessageBox(text);
 }
Example #13
0
 public AzureManageSubscriptionsDialog(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
 }
Example #14
0
 public static NewProjectDialog FromDte(VisualStudioApp app)
 {
     return(app.FileNewProject());
 }
Example #15
0
 public AzureCloudServicePublishDialog(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
 }
 public AddExistingEnvironmentDialogWrapper(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
 }
Example #17
0
 public PythonTestExplorer(VisualStudioApp app, AutomationElement element)
     : base(element)
 {
     _app = app;
 }
 public AzureWebSiteImportPublishSettingsDialog(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
 }
Example #19
0
 public SaveDialog(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
 }
Example #20
0
 public RemoveItemDialog(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
 }
Example #21
0
 private OverwriteFileDialog(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
 }
Example #22
0
 public static RemoveItemDialog FromDte(VisualStudioApp app)
 {
     return(new RemoveItemDialog(app, AutomationElement.FromHandle(app.OpenDialogWithDteExecuteCommand("Edit.Delete"))));
 }
Example #23
0
 public static AutomationDialog WaitForDialog(VisualStudioApp app)
 {
     return(new AutomationDialog(app, AutomationElement.FromHandle(app.WaitForDialog())));
 }
Example #24
0
 public static SaveDialog FromDte(VisualStudioApp app) {
     return new SaveDialog(
         app,
         AutomationElement.FromHandle(app.OpenDialogWithDteExecuteCommand("File.SaveSelectedItemsAs"))
     );
 }
Example #25
0
 public AzureWebSitePublishDialog(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
 }
Example #26
0
 public EditorWindow(VisualStudioApp app, string filename, AutomationElement element)
     : base(element)
 {
     VisualStudioApp = app;
     _filename       = filename;
 }
Example #27
0
 public AddExistingItemDialog(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
 }
Example #28
0
 public ChooseLocationDialog(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
 }