Created
January 30, 2013 16:40
-
-
Save danggrianto/4674516 to your computer and use it in GitHub Desktop.
retry clicking menu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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