Interface IRadioGroup
An Oracle option (radio button) group.
public interface IRadioGroup : IUiObjectBase, IClickable, ILocationInfoProvider, IEnabledProvider, ITestObject, ITestObjectDescriber
- Inherited Members
- Extension Methods
Properties
Caption
The caption of the object.
string Caption { get; }
Property Value
ClassPath
The Oracle class hierarchy of the object's Oracle class.
string ClassPath { get; }
Property Value
ObjectDescription
The accessibility description of the object, as specified by the server.
string ObjectDescription { get; }
Property Value
ObjectName
The internal name of the object, as supplied by the application server.
string ObjectName { get; }
Property Value
SelectedIndex
The index of the selected item (0-based). NOTE: If no item is selected, -1 is returned.
int SelectedIndex { get; }
Property Value
SelectedItem
The value of the selected item.
IRadioGroupItem SelectedItem { get; }
Property Value
TooltipText
The text displayed in the object's tooltip.
string TooltipText { get; }
Property Value
Methods
GetItem(int)
Returns the item with the specified text.
IRadioGroupItem GetItem(int itemIndex)
Parameters
itemIndexintThe index of the item (0-based).
Returns
GetItem(string)
Returns the item with the specified text.
IRadioGroupItem GetItem(string item)
Parameters
itemstringThe text of the item.
Returns
Select(IRadioGroupItem)
Selects the radio button with the specified value.
void Select(IRadioGroupItem item)
Parameters
itemIRadioGroupItemThe item to select.
Select(int)
Selects the radio button with the specified value.
void Select(int itemIndex)
Parameters
itemIndexintThe 0-based index of the item to select.
Select(string)
Selects the radio button with the specified value.
void Select(string item)
Parameters
itemstringThe item to select.
SetFocus()
Transfers the focus to the option group.
void SetFocus()