Hi all,
i’ve a problem with the assignment no. 2 with dispatcher, in particular on activity on element appear, it doesn’t work. This is the selector.
If i understand correctly this element is important to view if the page number is available, but why it failed?
The selector is that
@Ankumarm at first run TransactionItem is 1, On element appear doesn’t work for activity timeout exceeded. What’s wrong? The selector is the same of the documentation on academy
@bcorrea at first run, transactionItem is 1, so go directly trough On element appear, but goes in timeout, at second run go trough else and click the next page.
i guess is all about choice right? but would look nicer if you started your transaction at 2 then and not one… still it should be an integer and not text, or you cant increment it…
When the value is “2”, it goes into timeout? then the best is to try the selector in ui explorer to make sure it works before trying the whole project.
on element appear means that the execution of the next activity will start only when the element appear, no matter how long the wait is as long as u configure it right.
element exist means that the robot executes the checking of the element if it is there, then pass a boolean variable with either true or false values which can be used in an if activity to determine the next course of action
interesting fact: on element appear functions the same as element exist on a while/do while loop