Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. //Select all the site photo(s)
  2.  
  3.  
  4.  
  5.  
  6. List <WebElement> els = driver.findElements(By.xpath(".//input[@type='checkbox']"));
  7.  
  8. for ( WebElement el:els ) {
  9. if ( !el.isSelected() )
  10. {
  11. el.click();
  12.  
  13. }
  14. }
  15.  
  16.  
  17.  
  18. wait.until(ExpectedConditions.elementToBeClickable(By.xpath(".//*[@id='managePhotoModal']/div/div/div[3]/button[contains(text(),'Save & Close')]"))).click();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement