Skip to content

Commit 08b8571

Browse files
committed
REG-33 – try reinstating a (shorter) delay after jumping back to 1st step
And update OS & browser to latest available
1 parent 64db3fb commit 08b8571

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

steps/donation.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,8 @@ When(
198198
'I navigate back to the first step',
199199
async () => {
200200
page.jumpBackToFirstStep();
201+
// eslint-disable-next-line wdio/no-pause
202+
await browser.pause(500); // Animation seems to need a moment in some browsers?
201203
},
202204
);
203205

wdio.testingbot-all.conf.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ const { config } = require('./wdio.BASE.conf.ts');
33
config.capabilities = [
44
{
55
browserName: 'chrome',
6-
platform: 'WIN10',
6+
platform: 'WIN11',
77
version: '117',
88
build: config.build,
99
},
1010
{
1111
browserName: 'microsoftedge',
12-
platform: 'WIN10',
13-
version: '111',
12+
platform: 'WIN11',
13+
version: '117',
1414
build: config.build,
1515
// MS Edge, like IE, seems to also have problems with scroll mgmt behaviour.
1616
// https://stackoverflow.com/questions/52276194

wdio.testingbot-edge.conf.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ const { config } = require('./wdio.BASE.conf.ts');
22

33
config.capabilities = [{
44
browserName: 'microsoftedge',
5-
platform: 'WIN10',
6-
version: '111',
5+
platform: 'WIN11',
6+
version: '117',
77
build: config.build,
88
// MS Edge, like IE, seems to also have problems with scroll mgmt behaviour.
99
// https://stackoverflow.com/questions/52276194

0 commit comments

Comments
 (0)