iOS Accessor APIs
NOTES
- Prefer using a direct text accessor for best performance. For example: _button("Login").
- Prefer using a direct text accessor that does not change. For example, value is not a good choice for _textbox, since it can change. So _textbox("johndoe") is not a good accessor.
- If a direct text accessor is not available, use an index accessor provided it does not change. Otherwise, prefer a relational (_in, _near) or positional (_rightOf, _leftOf...) accessor.
- _rightOf may be faster than _near in many cases.
- _parentNode() may be useful too.
iOS Elements
_label | _iStaticText
Mobile Add-On |
7.5.0 |
Note | You may use either _label or _iStaticText |
API | _label(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th label in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_textbox | _iTextField
Mobile Add-On |
7.5.0 |
Note | You may use either _textbox or _iTextField |
API | _textbox(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th textbox in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is _setValue
Example usage:
|
Assertions |
Example assertions:
|
_textarea | _iTextView
Mobile Add-On |
7.5.0 |
Note | You may use either _textarea or _iTextView |
API | _textarea(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th textarea in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is _setValue
Example usage:
|
Assertions |
Example assertions:
|
_password | _iSecureTextField
Mobile Add-On |
7.5.0 |
Note | You may use either _password or _iSecureTextField |
API | _password(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th password in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is _setPassword
Example usage:
|
Assertions |
Example assertions:
|
_button | _mButton | _iButton
Mobile Add-On |
7.5.0 |
Note | You may use either _button or _mButton or _iButton |
API | _button(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th button in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_cell | _mCell | _iCell
Mobile Add-On |
7.5.0 |
Note | You may use either _cell or _mCell or _iCell |
API | _cell(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th cell in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_mGridView | _iGridView
Mobile Add-On |
7.5.0 |
Note | You may use either _mGridView or _iGridView |
API | _mGridView(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th mGridView in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iPicker
Mobile Add-On |
7.5.0 |
API | _iPicker(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iPicker in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iPickerWheel
Mobile Add-On |
7.5.0 |
API | _iPickerWheel(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iPickerWheel in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iDatePicker
Mobile Add-On |
7.5.0 |
API | _iDatePicker(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iDatePicker in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_mSwitch | _iSwitch
Mobile Add-On |
7.5.0 |
Note | You may use either _mSwitch or _iSwitch |
API | _mSwitch(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th mSwitch in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iSlider
Mobile Add-On |
7.5.0 |
API | _iSlider(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iSlider in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_mView | _iOther
Mobile Add-On |
7.5.0 |
Note | You may use either _mView or _iOther |
API | _mView(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th mView in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iPageIndicator
Mobile Add-On |
7.5.0 |
API | _iPageIndicator(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iPageIndicator in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_mProgressBar | _iProgressBar
Mobile Add-On |
7.5.0 |
Note | You may use either _mProgressBar or _iProgressBar |
API | _mProgressBar(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th mProgressBar in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iActivityIndicator
Mobile Add-On |
7.5.0 |
API | _iActivityIndicator(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iActivityIndicator in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iSegmentedControl
Mobile Add-On |
7.5.0 |
API | _iSegmentedControl(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iSegmentedControl in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iNavigationBar
Mobile Add-On |
7.5.0 |
API | _iNavigationBar(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iNavigationBar in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iWindow
Mobile Add-On |
7.5.0 |
API | _iWindow(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iWindow in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iAlert
Mobile Add-On |
7.5.0 |
API | _iAlert(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iAlert in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iKey
Mobile Add-On |
7.5.0 |
API | _iKey(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iKey in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iKeyboard
Mobile Add-On |
7.5.0 |
API | _iKeyboard(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iKeyboard in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_image | _iImage
Mobile Add-On |
7.5.0 |
Note | You may use either _image or _iImage |
API | _image(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th image in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iIcon
Mobile Add-On |
7.5.0 |
API | _iIcon(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iIcon in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_mSearchView | _iSearchView
Mobile Add-On |
7.5.0 |
Note | You may use either _mSearchView or _iSearchView |
API | _mSearchView(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th mSearchView in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is _setValue
Example usage:
|
Assertions |
Example assertions:
|
_iMap
Mobile Add-On |
7.5.0 |
API | _iMap(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iMap in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_mWebView | _iWebView
Mobile Add-On |
7.5.0 |
Note | You may use either _mWebView or _iWebView |
API | _mWebView(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th mWebView in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iDialog
Mobile Add-On |
7.5.0 |
API | _iDialog(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iDialog in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_mTabWidget | _iTabWidget
Mobile Add-On |
7.5.0 |
Note | You may use either _mTabWidget or _iTabWidget |
API | _mTabWidget(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th mTabWidget in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iTabGroup
Mobile Add-On |
7.5.0 |
API | _iTabGroup(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iTabGroup in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iTab
Mobile Add-On |
7.5.0 |
API | _iTab(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iTab in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_mToolbar | _iToolbar
Mobile Add-On |
7.5.0 |
Note | You may use either _mToolbar or _iToolbar |
API | _mToolbar(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th mToolbar in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iStatusBar
Mobile Add-On |
7.5.0 |
API | _iStatusBar(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iStatusBar in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_mScrollView | _iScrollView
Mobile Add-On |
7.5.0 |
Note | You may use either _mScrollView or _iScrollView |
API | _mScrollView(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th mScrollView in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iScrollBar
Mobile Add-On |
7.5.0 |
API | _iScrollBar(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iScrollBar in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_radio | _mRadioButton | _iRadioButton
Mobile Add-On |
7.5.0 |
Note | You may use either _radio or _mRadioButton or _iRadioButton |
API | _radio(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th radio in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_mRadioGroup | _iRadioGroup
Mobile Add-On |
7.5.0 |
Note | You may use either _mRadioGroup or _iRadioGroup |
API | _mRadioGroup(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th mRadioGroup in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_checkbox | _mCheckBox | _iCheckBox
Mobile Add-On |
7.5.0 |
Note | You may use either _checkbox or _mCheckBox or _iCheckBox |
API | _checkbox(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th checkbox in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iMenu
Mobile Add-On |
7.5.0 |
API | _iMenu(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iMenu in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iMenuItem
Mobile Add-On |
7.5.0 |
API | _iMenuItem(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iMenuItem in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iMenuBar
Mobile Add-On |
7.5.0 |
API | _iMenuBar(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iMenuBar in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iMenuBarItem
Mobile Add-On |
7.5.0 |
API | _iMenuBarItem(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iMenuBarItem in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iPopUpButton
Mobile Add-On |
7.5.0 |
API | _iPopUpButton(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iPopUpButton in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iMenuButton
Mobile Add-On |
7.5.0 |
API | _iMenuButton(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iMenuButton in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iToolbarButton
Mobile Add-On |
7.5.0 |
API | _iToolbarButton(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iToolbarButton in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iSheet
Mobile Add-On |
7.5.0 |
API | _iSheet(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iSheet in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iDrawer
Mobile Add-On |
7.5.0 |
API | _iDrawer(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iDrawer in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iDisclosureTriangle
Mobile Add-On |
7.5.0 |
API | _iDisclosureTriangle(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iDisclosureTriangle in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iComboBox
Mobile Add-On |
7.5.0 |
API | _iComboBox(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iComboBox in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iPopover
Mobile Add-On |
7.5.0 |
API | _iPopover(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iPopover in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iTableRow
Mobile Add-On |
7.5.0 |
API | _iTableRow(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iTableRow in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iTableColumn
Mobile Add-On |
7.5.0 |
API | _iTableColumn(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iTableColumn in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iOutline
Mobile Add-On |
7.5.0 |
API | _iOutline(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iOutline in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iOutlineRow
Mobile Add-On |
7.5.0 |
API | _iOutlineRow(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iOutlineRow in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iBrowser
Mobile Add-On |
7.5.0 |
API | _iBrowser(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iBrowser in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iToggle
Mobile Add-On |
7.5.0 |
API | _iToggle(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iToggle in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iLink
Mobile Add-On |
7.5.0 |
API | _iLink(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iLink in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iIncrementArrow
Mobile Add-On |
7.5.0 |
API | _iIncrementArrow(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iIncrementArrow in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iDecrementArrow
Mobile Add-On |
7.5.0 |
API | _iDecrementArrow(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iDecrementArrow in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iTimeline
Mobile Add-On |
7.5.0 |
API | _iTimeline(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iTimeline in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iRatingIndicator
Mobile Add-On |
7.5.0 |
API | _iRatingIndicator(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iRatingIndicator in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iValueIndicator
Mobile Add-On |
7.5.0 |
API | _iValueIndicator(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iValueIndicator in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iSplitGroup
Mobile Add-On |
7.5.0 |
API | _iSplitGroup(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iSplitGroup in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iSplitter
Mobile Add-On |
7.5.0 |
API | _iSplitter(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iSplitter in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iRelevanceIndicator
Mobile Add-On |
7.5.0 |
API | _iRelevanceIndicator(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iRelevanceIndicator in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iColorWell
Mobile Add-On |
7.5.0 |
API | _iColorWell(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iColorWell in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iHelpTag
Mobile Add-On |
7.5.0 |
API | _iHelpTag(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iHelpTag in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iMatte
Mobile Add-On |
7.5.0 |
API | _iMatte(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iMatte in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iDockItem
Mobile Add-On |
7.5.0 |
API | _iDockItem(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iDockItem in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iRuler
Mobile Add-On |
7.5.0 |
API | _iRuler(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iRuler in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iRulerMarker
Mobile Add-On |
7.5.0 |
API | _iRulerMarker(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iRulerMarker in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iGrid
Mobile Add-On |
7.5.0 |
API | _iGrid(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iGrid in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iLevelIndicator
Mobile Add-On |
7.5.0 |
API | _iLevelIndicator(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iLevelIndicator in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iLayoutArea
Mobile Add-On |
7.5.0 |
API | _iLayoutArea(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iLayoutArea in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iLayoutItem
Mobile Add-On |
7.5.0 |
API | _iLayoutItem(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iLayoutItem in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iHandle
Mobile Add-On |
7.5.0 |
API | _iHandle(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iHandle in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iStepper
Mobile Add-On |
7.5.0 |
API | _iStepper(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iStepper in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iTouchBar
Mobile Add-On |
7.5.0 |
API | _iTouchBar(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iTouchBar in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iStatusItem
Mobile Add-On |
7.5.0 |
API | _iStatusItem(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iStatusItem in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iGroup
Mobile Add-On |
7.5.0 |
API | _iGroup(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iGroup in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iApplication
Mobile Add-On |
7.5.0 |
API | _iApplication(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iApplication in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|
_iAny
Mobile Add-On |
7.5.0 |
API | _iAny(identifier [, relation1 [, relation2 ...]]) |
Identifiers | identifier, label, placholderValue, title, value, index
Valid Accessors and alternatives: (Assume this is the 6th iAny in the UI)
|
Relations |
Relational APIs _in, _near, _leftOf, _rightOf, _under, _above can be used.
|
Actions |
Default event recorded is
Example usage:
|
Assertions |
Example assertions:
|