This property is available in legacy mobile tests that work with devices connected to the local computer. To learn how to simulate user actions in newer cloud-compatible mobile tests, see the Simulating user actions in tests section. |
Description
Use the wItem
property to get the caption of a control’s item specified by its index.
Declaration
TestObj.wItem(Index)
Read-Only Property | String |
TestObj | A variable, parameter or expression that specifies a reference to one of the objects listed in the Applies To section | |||
Index | [in] | Required | Integer |
Applies To
The property is applied to the following objects:
Android ListView, Android RadioGroup, Android Spinner and 2 more objects, iOS SegmentedControl, Xamarin.Forms Picker « Collapse the list
View Mode
This property is available in the Object Browser panel and in other panels and dialogs in both Basic and Advanced view modes.
Parameters
The property has the following parameter:
Index
Specifies the index of the item whose caption you want to get. The index is zero-based, that is, the first item has the index 0, the second - 1, and so on. The index of the last item is wItemCount
- 1.
Property Value
The caption of the specified item.
Remarks
To get the caption of an item in an Android application, TestComplete uses the getText()
native method. If a child item does not support this method, the wItem
property returns an empty string.
If you use Python or DelphiScript, you should enclose the parameters of the wItem
property in square brackets: wItem[Item, SubItem]
.
See Also
Testing Android Applications (Legacy)
Testing iOS Applications (Legacy)
Getting List View Items' Text
Working With Radio Groups
Getting Spinner Items' Text
Getting a Segment's Text
wItemCount Property (Mobile Controls)
wFocus Property (Android Controls)
wSelected Property (Android Controls)