Skip to content

Commit 7a3acde

Browse files
committed
DON-883: Wait for reload on jumping back to first step
1 parent 642f2bd commit 7a3acde

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

steps/donation.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,10 @@ When(
195195

196196
When(
197197
'I navigate back to the first step',
198-
async () => page.jumpBackToFirstStep(),
198+
async () => {
199+
page.jumpBackToFirstStep();
200+
await browser.pause(500); // wait for page to reload, see DON-883
201+
},
199202
);
200203

201204
When(

0 commit comments

Comments
 (0)