我遇到了这个问题。我想在我的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++; }
答案 0 :(得分:1)
也许试试这个:
WebElement wE = driver.findElement(By.id("some id"));
for(int i= 1;i<20;i++){
wE.sendKeys("Example "+ i);
}