2017-10-11 70 views

回答

0
String winHandleBefore = driver.getWindowHandle(); 

    // Perform the click operation that opens new window 

    driver.findElement(By.xpath("yourElement").click()); 
    // Switch to new window opened 
    for(String winHandle : driver.getWindowHandles()){ 
    driver.switchTo().window(winHandle); 
    } 

    // Perform the actions on new window 

    // Close the new window, if that window no more required 
    driver.close(); 

    // Switch back to original browser (first window) 
    driver.switchTo().window(winHandleBefore); 
相关问题