[ElmSharp][Non-ACR] Updated TC for more clarify 12/205512/5
authorJeonghyun Yun <jh0506.yun@samsung.com>
Tue, 7 May 2019 05:15:21 +0000 (14:15 +0900)
committerJeonghyun Yun <jh0506.yun@samsung.com>
Tue, 7 May 2019 07:06:41 +0000 (16:06 +0900)
Change-Id: I4ca2248f8bbc3066f4a70d037864cf81b97bc6c3

tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSEntry.cs
tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSSlider.cs [changed mode: 0755->0644]

index cd17cb1..2b43a47 100644 (file)
@@ -1000,6 +1000,7 @@ namespace ElmSharp.Tests
         {
             CreateEntryPage("ShowInputPanel");
             _entry.Text = "123456 abcdef";
+            _button1.SetFocus(true);
 
             _button1.Clicked += OnClickedByShowInputPanel;
             // Waits for user confirmation.
old mode 100755 (executable)
new mode 100644 (file)
index 8dccf5b..141e927
@@ -379,7 +379,7 @@ namespace ElmSharp.Tests
         [Property("AUTHOR", "Gu Wenxuan, wenxuan.gu@samsung.com")]
         [Precondition(1, "NA")]
         [Step(1, "Tap on the Run button")]
-        [Step(2, "Press the moveable object,if shows number at the moveable object of slider PASS; else FAIL")]
+        [Step(2, "If you can see the slider position number 0.5 PASS; else FAIL (You should press the moveable object for check on Mobile or TV")]
         [Step(3, "Tap on the Pass button or the Fail button")]
         [Postcondition(1, "NA")]
         public async Task IndicatorFormat_LOOK()
@@ -390,10 +390,12 @@ namespace ElmSharp.Tests
             _slider.WeightX = 1;
             _slider.WeightY = 1;
 
-            _slider.IsHorizontal = false;
-            _slider.Value = 30.0;
+            _slider.IsHorizontal = true;
+            _slider.Minimum = 0;
+            _slider.Maximum = 1;
+            _slider.Value = 0.45;
             _slider.IsIndicatorVisible = true;
-            _slider.IndicatorFormat = "%1.2f";
+            _slider.IndicatorFormat = "%1.1f";
 
             await ManualTest.WaitForConfirm();
         }
@@ -514,4 +516,4 @@ namespace ElmSharp.Tests
             }
         }
     }
-}
\ No newline at end of file
+}