File tree Expand file tree Collapse file tree 1 file changed +5
-10
lines changed
UITests/UITests.Tests.Shared/Controls Expand file tree Collapse file tree 1 file changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -52,16 +52,11 @@ public void SimpleTestMethod2()
52
52
var submitMaximum = new Button ( FindElement . ById ( "submitMaximum" ) ) ;
53
53
var submitAll = new Button ( FindElement . ById ( "submitAll" ) ) ;
54
54
55
- inputStepFrequency . SendKeys ( "1" ) ;
56
- Wait . ForIdle ( ) ;
57
- inputMinimum . SendKeys ( "0" ) ;
58
- Wait . ForIdle ( ) ;
59
- inputRangeStart . SendKeys ( "10" ) ;
60
- Wait . ForIdle ( ) ;
61
- inputRangeEnd . SendKeys ( "90" ) ;
62
- Wait . ForIdle ( ) ;
63
- inputMaximum . SendKeys ( "100" ) ;
64
- Wait . ForIdle ( ) ;
55
+ KeyboardHelper . EnterText ( inputStepFrequency , "1" ) ;
56
+ KeyboardHelper . EnterText ( inputMinimum , "0" ) ;
57
+ KeyboardHelper . EnterText ( inputRangeStart , "10" ) ;
58
+ KeyboardHelper . EnterText ( inputRangeEnd , "90" ) ;
59
+ KeyboardHelper . EnterText ( inputMaximum , "100" ) ;
65
60
66
61
submitAll . Click ( ) ;
67
62
Wait . ForIdle ( ) ;
You can’t perform that action at this time.
0 commit comments