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