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

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