Skip to content

Commit

Permalink
Added more output on waiting
Browse files Browse the repository at this point in the history
  • Loading branch information
csrster committed Jan 28, 2022
1 parent d4a533d commit 06e3f57
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ public void waitForGUIToStart(int maxNumberOfSecondsToWait) {
int numberOfSecondsToWaiting = 0;
TestEventManager.getInstance().addStimuli("Waiting for GUI to start.");
while (numberOfSecondsToWaiting++ < maxNumberOfSecondsToWait) {
System.out.println("Waited " + numberOfSecondsToWaiting + "/" + maxNumberOfSecondsToWait);
PageHelper.reloadSubPage("HarvestDefinition");
if (PageHelper.getWebDriver().getPageSource().contains("Menu")) {
System.out.println();
Expand Down

0 comments on commit 06e3f57

Please sign in to comment.