Skip to content

Commit 62f38e2

Browse files
committed
Attempt to fix waits in CI
1 parent 933a123 commit 62f38e2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Tests/CSF.Screenplay.Selenium.Tests/Actions/WaitTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ static readonly ITarget
2121
static readonly NamedUri testPage = new NamedUri("WaitTests.html", "the test page");
2222

2323
static int GetDelayMilliseconds(Actor actor)
24-
=> actor.GetAbility<BrowseTheWeb>().WebDriver.Unproxy() is RemoteWebDriver ? 1500 : 250;
24+
=> actor.GetAbility<BrowseTheWeb>().WebDriver.Unproxy() is RemoteWebDriver ? 5000 : 500;
2525

2626
static int GetSufficientWaitMilliseconds(Actor actor)
27-
=> actor.GetAbility<BrowseTheWeb>().WebDriver.Unproxy() is RemoteWebDriver ? 2000 : 600;
27+
=> actor.GetAbility<BrowseTheWeb>().WebDriver.Unproxy() is RemoteWebDriver ? 9000 : 1000;
2828

2929
static int GetInsufficientWaitMilliseconds(Actor actor) => 50;
3030

0 commit comments

Comments
 (0)