Hello,
What command is used to verify the list of suggestions is displayed when typing a letter in text field (example: a)? And how to verify the items in the list start with the letter you typed?
Hello,
What command is used to verify the list of suggestions is displayed when typing a letter in text field (example: a)? And how to verify the items in the list start with the letter you typed?
I believe you're talking about something like Google Suggests with autocomplete. Your test would look something like this
The calls would be like this
open(/)
typeAndWait(textId,a)
verifyText(css=div#suggestion:first-child,a*)
Hope that helps