I'm trying to verify if there is text inside an element. If there is text inside this element I want it to gotolabel and if there isn't any text want to to continue on. How can i go about doing this?
I've tried to verifyText | id=note | (i don't know how to make it search for ANY word)
But I don't know how to make it search for ANY text and make it skip to a label once it does find a text.
EDIT: I changed verifyText
with verifyElementPresent | id=note |
. If the element is present that means that there is text.
Now I'm stuck again. How can i make a
if | verifyElementPresent == true |
gotolabel | start |
kind of statement possible?