selenium 에서 직접 하위 노드 가 져 오기

596 단어 selenium자바

Get all immediate children and nothing deeper
 

  
    

 
The expected result is  div  and  span .. ("*")  gives all the child elements of the context node. So use:
WebElement body = browser.findElement(By.xpath("//body"));

body.findElement(By.xpath("*"));; // I want to get all child elements 
                                // inside body, but nothing deeper.

 
 
 

좋은 웹페이지 즐겨찾기