If ... then else statements
Hi All,
anyone who can help me?
im hoping its simple but im new to smartbear ( and automation testing) so suggestions are much welcomed.
all i am wanting to do is to run either a If ... Then / Else or a loop where a button is clicked until a pop up screen arrives, then once the pop up screen arrives then continue the test (the pop up will usually arrive withing around 5 clicks of the button)
what is the best way of doing this?
image is attached, but i simply want Click btnPick to repeat until wndOK is visible
Thanks in advance!!
You can use For Loop to n times you wanted to click.
When you're done with adding above dialog create button click action put it in Foor Loop then you are all set.
You will see a screen like below (Instead Log you will button lick)
To expand on shankar_r's answer... the for loop is what you would do for repeatedly clicking on the button. Each time through the loop, click the button. Then use an "if-object" operation to check to see if the popup exists. If it does, if this was script code, I'd call a "break" in the for-loop. However, since it is not script code, break is not available so I would set the index of the for-loop to be equal to the upper range so that the loop would exit.