/*<div id="divId">
<input id="userid" type="text" value="liuhaixia" title="用户名" name="userid" class="uid">
<input id="password" type="password" value="123456" title="密码" name="password">
<a href="http://192.168.66.71:8080/dss" >超链接</a>
</div>*/
//层级定位,层级定位的思想是先定位父元素,然后再从父元素中精确定位出其我们需要选取 的子元素。
//层级定位一般的应用场景是无法直接定位到需要选取的元素,但是其父元素比较 容易定位,通过定位父元素再遍历其子元素选择需要的目标元素,或者需要定位 某个元素下所有的子元素。
public void locateLevels() throws IOException{
System.out.println("---------层级定位多个元素---------");
WebDriver driver = new FirefoxDriver();
driver.get("http://192.168.2.128:8080/selenium/index.jsp");
WebElement eleParent = driver.findElement(By.id("divId"));
List<WebElement> eleSub = eleParent.findElements(By.tagName("input"));
for(WebElement ele : eleSub){
System.out.println(ele.getAttribute("id"));
System.out.println(ele.getAttribute("name"));
}
}