How to loop tests in Selenium IDE?

后端 未结 8 1923
生来不讨喜
生来不讨喜 2020-12-13 23:31

I\'ve been testing in Selenium IDE. It\'s pretty easy to use, and I have created some test cases with it. I\'ve been searching Google, trying to find a way to repeat my test

8条回答
  •  一生所求
    2020-12-14 00:08

    as stated in the answer above, install the user extension, which will add loop functionality to Selenium IDE tests. The example below shows a simple loop:

    
    getEval
    index = 0;
    
    
    
    while
    index < 10;
    
    
    
    storeEval
    index
    value
    
    
    echo
    ${value}
    
    
    
    getEval
    index++;
    
    
    
    endWhile
    
    
    
    

提交回复
热议问题