...
Improvements
GDSL for ios
There are 2 4 new gdsl functions:
findByClass
...
findByText
findByTextExact
clickOnLastElementFound
...
The findByClass function allows to find an element thanks to its class from the dump file. You can add a second parameter to specify the rank of the element. By default, the first rank is used. You can also add a third parameter to detect elements with the enabled field set to true or false. By default, this parameter is set to true. Then, to click on the element, you can use the clickOnLastElementFound function.
Example : GDSL of a gdsl script to click on the third element with the TextField class and the enabled field set to true:
Code Block | ||
---|---|---|
| ||
findByClass,TextField,3,true
clickOnLastElementFound |
Bug fixes
...