Guest User

Untitled

a guest
Jan 22nd, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. public boolean getSyncStatus() throws Exception {
  2.  
  3. //Retrieve the columns values
  4.  
  5. // if status column == PENDING (WHILE TESTING) return true
  6.  
  7. return true;
  8.  
  9. // else return false with error handling
  10. }
  11.  
  12. await().atMost(5, SECONDS).until(this::getSyncStatus);
Add Comment
Please, Sign In to add comment