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