How to write a loop while in Robot Framework
问题 I make my first simple test case, and I have one problem. Is it possible write a loop in Robot Framework? I want to retrieve the value from the address and the address of the modified variable "i". I want to perform until such an address exists, because it is a row in the table. ${f1} A ${f_temp} B While ${f1} != ${f_temp} or While element xpath=//${i} is visible \ ${F_temp} Get Text xpath=//${i} \ ${i} ${i}+1 \ Run Keyword And Continue On Failure Should be equal ${f_temp} ${f1} Any ideas?