|
1.How can SilkTest check and uncheck CheckBoxes embedded into ListViews which are not recognised by the recorder?
ANSWER
----------------------------------
CheckBoxes embedded into ListView controls are not recognised by SilkTest at all. This is due to the fact that these controls are not true CheckBoxes and are simply icons which do not have a standard class in SilkTest.
These controls can be tested with SilkTest despite the recognition problem. One of the aspects which can be tested is checking and unchecking of the CheckBoxes.
The example below uses the network properties DialogBox on Windows as the AUT. This DialogBox contains a ListView with embedded CheckBoxes. The code uses PressItem(), ReleaseItem() and TypeKeys() to manipulate the CheckBoxes. The parameter passed to PressItem() and ReleaseItem() is the index of the item you wish to highlight in the ListView, the name of this item can also be used as an alternative to the index. TypeKeys("<Space>") performs the check or uncheck of the CheckBox.
[ ] Window1.SetActive ()
[ ] Window1.Dialog1.ListView1.PressItem (3)
[ ] Window1.Dialog1.ListView1.ReleaseItem (3)
[ ] Window1.Dialog1.ListView1.TypeKeys ("<Space>") |
|