在java中循环使用selenium webdriver脚本但具有不同的值

时间:2014-07-30 11:03:16

标签: java loops selenium

我遇到了这个问题。我想在我的selenium webdriver中循环这个函数:

  

driver.findElement(By.id(“some id”))。sendKeys(“Example 1”);

但是我希望每个下一个生成的元素都是“例2”,“例3”,“例4”等等。有一个简单的方法吗?


行。我通过制作它来管理它:

int x = 1;
 while (x<20) {
    driver.findElement(By.id("some id")).sendKeys("Example" + x);x++; }

1 个答案:

答案 0 :(得分:1)

也许试试这个:

WebElement wE = driver.findElement(By.id("some id"));
for(int i= 1;i<20;i++){
     wE.sendKeys("Example "+ i);
}