public TestBasicAutomationElement(TestAutomation automation) : base(automation)
 {
     Automation  = automation;
     Patterns    = new TestAutomationElementPatternValues(this);
     Name        = "";
     ControlType = FlaUI.Core.Definitions.ControlType.Custom;
 }
 public TestBasicAutomationElement(TestAutomation automation, UIA.AutomationElement nativeElement) : this(automation)
 {
 }
Beispiel #3
0
 public TestTextRange(TestAutomation automation, UIA.Text.TextPatternRange nativeRange)
 {
     Automation  = automation;
     NativeRange = nativeRange;
 }