public static interface TabControl.Tabbable
Modifier and Type | Interface and Description |
---|---|
static class |
TabControl.Tabbable.Tab
This class wraps a TabControl's Tab object.
For now, the embedded Tab object can be a Map. APR 21, 2014 (sbjlwa) Initial release. |
Modifier and Type | Method and Description |
---|---|
TabControl.Tabbable.Tab[] |
getContent() |
void |
selectTab(int index,
boolean verify)
Try to select the tab according to the index, and then verify if the tab
has been really selected according to the parameter 'verify'.
|
void |
selectTab(java.lang.String tabName,
boolean patialMatch,
boolean verify)
Try to select the tab according to the name (fully or partially given),
and then verify if the tab has been really selected according to the parameter 'verify'.
|
void selectTab(java.lang.String tabName, boolean patialMatch, boolean verify) throws SeleniumPlusException
tabName
- String, the tab to selectpatialMatch
- boolean, if the parameter tabName is given partially;verify
- boolean, if true then verify the selection;SeleniumPlusException
void selectTab(int index, boolean verify) throws SeleniumPlusException
index
- int, the tab to select, it is 0-based index.verify
- boolean, if true then verify the selection;SeleniumPlusException
TabControl.Tabbable.Tab[] getContent() throws SeleniumPlusException
SeleniumPlusException