13 references to Automation
Microsoft.VisualStudio.IntegrationTest.Utilities (12)
AutomationElementExtensions.cs (5)
44var condition = Helper.Automation.CreatePropertyCondition(AutomationElementIdentifiers.AutomationIdProperty.Id, automationId); 69var condition = Helper.Automation.CreatePropertyCondition(AutomationElementIdentifiers.NameProperty.Id, name); 94var condition = Helper.Automation.CreatePropertyCondition(AutomationElementIdentifiers.ClassNameProperty.Id, className); 120var condition = Helper.Automation.CreatePropertyCondition(AutomationElementIdentifiers.ClassNameProperty.Id, className); 264var next = item.FindFirst(TreeScope.TreeScope_Descendants, Helper.Automation.CreatePropertyCondition(AutomationElementIdentifiers.LocalizedControlTypeProperty.Id, pathPart));
AutomationElementHelper.cs (3)
27Helper.Automation.AddAutomationEventHandler( 49var condition = Helper.Automation.CreatePropertyCondition(AutomationElementIdentifiers.NameProperty.Id, elementName); 54() => (element = Helper.Automation.GetRootElement().FindFirst(scope, condition)) != null, expectedResult: true
DialogHelpers.cs (4)
113var vsAutomationElement = Helper.Automation.ElementFromHandle(visualStudioHWnd); 115var elementCondition = Helper.Automation.CreateAndConditionFromArray( 118Helper.Automation.CreatePropertyCondition(nameProperty.Id, propertyValue), 119Helper.Automation.CreatePropertyCondition(AutomationElementIdentifiers.ControlTypeProperty.Id, ControlType.Window.Id),
Microsoft.VisualStudio.LanguageServices.IntegrationTests (1)
AbstractIntegrationTest.cs (1)
38Helper.Automation.TransactionTimeout = 20000;