Skip to content

Commit

Permalink
Merge pull request #669 from dvsa/hotfix/increase-kickout-time
Browse files Browse the repository at this point in the history
chore:increase kickout time
  • Loading branch information
sr4850 authored Aug 15, 2024
2 parents 3cf7ec2 + 6984f9f commit c7a74ae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public void theInterimFeeShouldBeRefunded() throws HttpException {
waitForTextToBePresent("£68.00");
clickByLinkText("Grant Interim Fee for application");
waitForTextToBePresent("Fee details");
long kickoutTime = System.currentTimeMillis() + 160000;
long kickoutTime = System.currentTimeMillis() + 200000;
do {
refreshPageWithJavascript();
} while(!getText("//*//dd//strong", SelectorType.XPATH).toLowerCase().contains("refunded") && System.currentTimeMillis() < kickoutTime);
Expand Down

0 comments on commit c7a74ae

Please sign in to comment.