Hello GitHub
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// Licensed under the MIT License.
|
||||
|
||||
using MS.Internal.Mita.Foundation;
|
||||
using MS.Internal.Mita.Foundation.Controls;
|
||||
|
||||
namespace Calculator.UIAutomationLibrary.Components
|
||||
{
|
||||
public class DateCalculatorPom : UIObject
|
||||
{
|
||||
private const string ModeSelectorId = "DateCalculationOption";
|
||||
|
||||
public DateCalculatorPom(UIObject uiObject) : base(uiObject)
|
||||
{
|
||||
}
|
||||
|
||||
public ComboBox ModeSelector
|
||||
{
|
||||
get
|
||||
{
|
||||
return new ComboBox(this.Descendants.Find(ModeSelectorId));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user