Skip to content

Instantly share code, notes, and snippets.

@danggrianto
Created January 30, 2013 16:40
Show Gist options
  • Select an option

  • Save danggrianto/4674516 to your computer and use it in GitHub Desktop.

Select an option

Save danggrianto/4674516 to your computer and use it in GitHub Desktop.
retry clicking menu
for(int i=0; i<3; i++){
try{
AdminPage adminPage = main.editPlatformSettings();
DriverWrapper.delay(1000);
}catch (Exception e){
DriverWrapper.delay(3000);
debug("Unable to change setting. Retrying ...");
continue;
}
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment