Table of Contents

Interface IListBox

An SAPUI5 list box.

Inherited Members
IListBox.Select(params IListItem[])
IListBox.Select(params string[])
IListBox.Select(params uint[])
IListBox.Deselect(params IListItem[])
IListBox.Deselect(params string[])
IListBox.Deselect(params uint[])
IListBox.ExtendSelect(params string[])
IListBox.ExtendSelect(params uint[])
IListBox.ExtendSelect(params IListItem[])
IListBox.GetItem(string)
IListBox.Value
IListBox.DefaultValue
IListBox.IsMultiple
IListBox.VisibleItemsCount
IListBox.Type
IWebElement.DoubleClick()
IWebElement.DoubleClick(WebDoubleClickArgs)
IWebElement.HoverTap()
IWebElement.HoverTap(Location)
IWebElement.FireEvent(EventInfo)
IWebElement.LongPress()
IWebElement.LongPress(WebLongPressArgs)
IWebElement.Pan(long, long)
IWebElement.Pan(WebPanArgs)
IWebElement.Pinch(double)
IWebElement.Pinch(WebPinchArgs)
IWebElement.Swipe(SwipeDirection)
IWebElement.Swipe(WebSwipeArgs)
IWebElement.XPath
IWebElement.AccessibilityName
IWebElement.CSSSelector
IWebElement.Role
ITestObject.GetDescription()
ITestObject.SetDescription(IDescription)
ITestObject.FindChildren<TChild>(IDescription)
ITestObject.Exists()
ITestObject.Exists(uint)
ITestObject.GetSnapshot()
ITestObject.Highlight()
ITestObject.HighlightMatches<TChild>(IDescription)
ITestObject.GetTextLocations(string)
ITestObject.GetTextLocations(string, Rectangle)
ITestObject.GetVisibleText()
ITestObject.GetVisibleText(Rectangle)
ITestObject.VerifyImageExists(Image, byte)
ITestObject.VerifyImageMatch(Image, byte, byte)
ITestObject.VerifyImageMatch(Image, ImageMaskArea, byte, byte)
ITestObject.CallFTMethod(string, params object[])
ITestObject.CallFTMethod<TResult>(string, params object[])
ITestObject.Parent
ITestObject.DisplayName
IClickable.Click(MouseButton)
IClickable.Click(ClickArgs)
IWebTestObject.GetAttribute(string)
IWebTestObject.GetComputedStyle(string)
IWebTestObject.Describe<TChild>(IDescription)
IWebTestObject.Describe<TChild>(XPathDescription)
IWebTestObject.Describe<TChild>(CSSDescription)
IWebTestObject.ClassName
IWebTestObject.Id
IWebTestObject.TagName
IWebTestObject.InnerHTML
IWebTestObject.OuterHTML
IWebTestObject.InnerText
IWebTestObject.OuterText
IWebTestObject.Name
IWebTestObject.Title
IWebTestObject.Attributes
IWebTestObject.Styles
ILocationInfoProvider.Location
ILocationInfoProvider.AbsoluteLocation
ILocationInfoProvider.Size
ISupportsNativeObject.NativeObject
IVisibleProvider.IsVisible
ISupportDragAndDrop.DragAndDropOn(ISupportDragAndDrop)
ISupportDragAndDrop.DragAndDropOn(ISupportDragAndDrop, DragAndDropArgs)
IEnabledProvider.IsEnabled
Namespace: HP.LFT.SDK.SAP.UI5
Assembly: HP.LFT.SDK.dll
Syntax
public interface IListBox : IListBox, IWebElement, ITestObject, IClickable, IWebTestObject, IWebDescriber, ITestObjectDescriber, ILocationInfoProvider, ISupportsNativeObject, IVisibleProvider, ISupportDragAndDrop, IEnabledProvider

Properties

ControlType

The type of object. Possible values: ControlType

Declaration
ControlType ControlType { get; }
Property Value
Type Description
ControlType

Items

The list of all items contained in the object (separated by ;).

Declaration
ReadOnlyCollection<IListItem> Items { get; }
Property Value
Type Description
ReadOnlyCollection<IListItem>

Mobile

Additional functionality provided by IMobileListBehavior

Declaration
IMobileListBehavior Mobile { get; }
Property Value
Type Description
IMobileListBehavior

SelectType

The object's selection type. Possible values: SelectType

Declaration
SelectType SelectType { get; }
Property Value
Type Description
SelectType

SelectedItems

The list of all selected items contained in the object (separated by ;).

Declaration
ReadOnlyCollection<IListItem> SelectedItems { get; }
Property Value
Type Description
ReadOnlyCollection<IListItem>

Methods

FilterByDate(DateTime)

Invokes the specified filter according to the specified date.

Declaration
void FilterByDate(DateTime date)
Parameters
Type Name Description
DateTime date

The date by which to filter.

Set(string)

Enters the specified text in the list box.

Declaration
void Set(string text)
Parameters
Type Name Description
string text

The text to enter.

SingleSelect(string)

Single-select by #index.

Declaration
void SingleSelect(string item)
Parameters
Type Name Description
string item

SingleSelect(uint)

Single-select by index.

Declaration
void SingleSelect(uint itemIndex)
Parameters
Type Name Description
uint itemIndex

Extension Methods

TestObjectExtensions.WaitUntilEnabled<T>(T)
TestObjectExtensions.WaitUntilEnabled<T>(T, int)
TestObjectExtensions.WaitUntilExists<T>(T)
TestObjectExtensions.WaitUntilExists<T>(T, int)
TestObjectExtensions.WaitUntilVisible<T>(T)
TestObjectExtensions.WaitUntilVisible<T>(T, int)
TestObjectExtensions.WaitUntil<T>(T, Func<T, bool>)
TestObjectExtensions.WaitUntil<T>(T, Func<T, bool>, int)