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

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