//通过tagName定位
List<WebElement> ele=driver.findElements(By.tagName("input"));
for(WebElement we:ele){
if(!we.getAttribute("type").equals("hidden")){//判断如果type不为hidden才输入
we.sendKeys("一加");
}
}
List<WebElement> ele=driver.findElements(By.tagName("input"));
for(WebElement we:ele){
if(!we.getAttribute("type").equals("hidden")){//判断如果type不为hidden才输入
we.sendKeys("一加");
}
}
2017-05-07
最新回答 / 慕无忌4935138
这个可以解决你现在的问题:http://jingyan.baidu.com/article/870c6fc3048ff6b03fe4be85.html
2017-04-25