Interface IRadioGroup
An SAPUI5 radio group object.
Inherited Members
Namespace: HP.LFT.SDK.SAP.UI5
Assembly: HP.LFT.SDK.dll
Syntax
public interface IRadioGroup : IWebElement, ITestObject, IClickable, IWebTestObject, IWebDescriber, ITestObjectDescriber, ILocationInfoProvider, ISupportsNativeObject, IVisibleProvider, ISupportDragAndDrop, IEnabledProvider
Properties
Items
The list of all items contained in this object.
Declaration
ReadOnlyCollection<string> Items { get; }
Property Value
| Type | Description |
|---|---|
| ReadOnlyCollection<string> |
SelectedItem
The title of the currently selected item.
Declaration
string SelectedItem { get; }
Property Value
| Type | Description |
|---|---|
| string |
Methods
Select(string)
Selects the specified radio button (by name) in the radio group.
Declaration
void Select(string item)
Parameters
| Type | Name | Description |
|---|---|---|
| string | item | The item to select. |
Select(uint)
Selects the specified radio button (by index) in the radio group.
Declaration
void Select(uint itemIndex)
Parameters
| Type | Name | Description |
|---|---|---|
| uint | itemIndex | The index of the item to select (1-based). |