Skip to content

Commit 96e5113

Browse files
committed
UI Tests: Add wait after actions
1 parent 45bc90f commit 96e5113

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

UITests/UITests.Tests.Shared/Controls/RangeSelectorTest.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,18 @@ public void SimpleTestMethod2()
5353
var submitAll = new Button(FindElement.ById("submitAll"));
5454

5555
inputStepFrequency.SendKeys("1");
56+
Wait.ForIdle();
5657
inputMinimum.SendKeys("0");
58+
Wait.ForIdle();
5759
inputRangeStart.SendKeys("10");
60+
Wait.ForIdle();
5861
inputRangeEnd.SendKeys("90");
62+
Wait.ForIdle();
5963
inputMaximum.SendKeys("100");
64+
Wait.ForIdle();
6065

6166
submitAll.Click();
67+
Wait.ForIdle();
6268

6369
var currentStepFrequency = new TextBlock(FindElement.ById("currentStepFrequency"));
6470
var currentMinimum = new TextBlock(FindElement.ById("currentMinimum"));

0 commit comments

Comments
 (0)