From: Jeonghyun Yun Date: Tue, 7 May 2019 05:15:21 +0000 (+0900) Subject: [ElmSharp][Non-ACR] Updated TC for more clarify X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=07cd1a79e629e521b732abfa096db89092bd5ab8;p=test%2Ftct%2Fcsharp%2Fapi.git [ElmSharp][Non-ACR] Updated TC for more clarify Change-Id: I4ca2248f8bbc3066f4a70d037864cf81b97bc6c3 --- diff --git a/tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSEntry.cs b/tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSEntry.cs index cd17cb134..2b43a47d5 100644 --- a/tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSEntry.cs +++ b/tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSEntry.cs @@ -1000,6 +1000,7 @@ namespace ElmSharp.Tests { CreateEntryPage("ShowInputPanel"); _entry.Text = "123456 abcdef"; + _button1.SetFocus(true); _button1.Clicked += OnClickedByShowInputPanel; // Waits for user confirmation. diff --git a/tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSSlider.cs b/tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSSlider.cs old mode 100755 new mode 100644 index 8dccf5b87..141e9275e --- a/tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSSlider.cs +++ b/tct-suite-vs/Tizen.ElmSharp.Manual.Tests/testcase/TSSlider.cs @@ -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 +}