With this version, Greenspector invests in the GDSL to facilitate navigation in the forms and in all components of the page even if they do not have an identifier, text or description to find them

To complete the release note, you can find new tutorial here

Advanced search commands

Remplir un formulaire

New Features

For example in the previous image, we have the focus on the first Edit Text to set departure, we can navigate easily to next field to set Arrival by using the command pressTab

formClickOnEditText to click on the nth EditText of the page

formClickOnCheckbox to click on the nth Checkbox of the page

# click on the first Edit Text 'Votre recherche'
formClickOnEditText,1

# clic on the second Edit Text 'Précisez votre ville'
formClickOnEditText,2

As we can see in the image, the field has no text, content-desc and the resource-id may be shuffle. The field has eventually a class but we decide for the example to navigate on the view to find the interesting element.

# Let's find the 'Départ' libelle
findByText,Départ

# go to the first parent
findParentLastElementFound

# go to the second parent
findParentLastElementFound

# then go to the 2th element of the parent to find the EditText
findChildByIndexLastElementFound,2

# set the text directly
setTextLastElementFound,Paris

Improvements

> testrunner testdslcommand -c “dump”

You can then put those files in uiautomatorviewer

Fixed bugs

Fixed GDSL command ‘browserReset’ for last chrome version