We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 933a123 commit 62f38e2Copy full SHA for 62f38e2
1 file changed
Tests/CSF.Screenplay.Selenium.Tests/Actions/WaitTests.cs
@@ -21,10 +21,10 @@ static readonly ITarget
21
static readonly NamedUri testPage = new NamedUri("WaitTests.html", "the test page");
22
23
static int GetDelayMilliseconds(Actor actor)
24
- => actor.GetAbility<BrowseTheWeb>().WebDriver.Unproxy() is RemoteWebDriver ? 1500 : 250;
+ => actor.GetAbility<BrowseTheWeb>().WebDriver.Unproxy() is RemoteWebDriver ? 5000 : 500;
25
26
static int GetSufficientWaitMilliseconds(Actor actor)
27
- => actor.GetAbility<BrowseTheWeb>().WebDriver.Unproxy() is RemoteWebDriver ? 2000 : 600;
+ => actor.GetAbility<BrowseTheWeb>().WebDriver.Unproxy() is RemoteWebDriver ? 9000 : 1000;
28
29
static int GetInsufficientWaitMilliseconds(Actor actor) => 50;
30
0 commit comments