Interface IDatePicker
An SAPUI5 date picker.
public interface IDatePicker : IWebElement, ITestObject, IClickable, IWebTestObject, IWebDescriber, ITestObjectDescriber, ILocationInfoProvider, ISupportsNativeObject, IVisibleProvider, ISupportDragAndDrop
- Inherited Members
- Extension Methods
Properties
DisplayMode
The manner of displaying the date picker object.
DatePickerDisplayMode DisplayMode { get; }
Property Value
Remarks
Possible values: DatePickerDisplayMode
Months
The list of months contained in this date picker.
ReadOnlyCollection<string> Months { get; }
Property Value
SelectedDates
The date values selected in this date picker.
ReadOnlyCollection<DateTime> SelectedDates { get; }
Property Value
Methods
Deselect(DateTime)
Deselects the date.
void Deselect(DateTime date)
Parameters
dateDateTimeThe date to clear from the list.
Next()
Scrolls to the next page of dates.
void Next()
Previous()
Scrolls to the previous page of dates.
void Previous()
Select(DateTime)
Selects the date.
void Select(DateTime date)
Parameters
dateDateTimeThe date to select from the list.