From 4f64ee6d41da26634e77b1282fb1a7ff3fb65b05 Mon Sep 17 00:00:00 2001 From: RinaYou Date: Fri, 31 Aug 2018 13:32:36 +0900 Subject: [PATCH] [Xamarin.Form][Non-ACR] Fixed the issue of TC Change-Id: I712034917859c0c042dcd6908f447fb5d5a4d4af --- .../testcase/TSMultiPageTemplate.cs | 7 +++++-- .../Tizen.XamarinForms.Manual.Tests/testcase/TSStepper.cs | 7 ++++--- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/tct-suite-vs/Tizen.XamarinForms.Manual.Tests/testcase/TSMultiPageTemplate.cs b/tct-suite-vs/Tizen.XamarinForms.Manual.Tests/testcase/TSMultiPageTemplate.cs index c78fad06e..1b9d7a8ef 100755 --- a/tct-suite-vs/Tizen.XamarinForms.Manual.Tests/testcase/TSMultiPageTemplate.cs +++ b/tct-suite-vs/Tizen.XamarinForms.Manual.Tests/testcase/TSMultiPageTemplate.cs @@ -180,7 +180,7 @@ namespace Xamarin.Forms.Core.UnitTests [Property("AUTHOR", "Abu Sina Md. Raju Chowdhury, asm.raju@samsung.com")] [Precondition(1, "NA")] [Step(1, "Click run TC")] - [Step(2, "Click 'Change Page' button")] + [Step(2, "Click the second's tab with Page2 text")] [Step(3, "Press Back Button")] [Step(4, "Testcase result will show PASS automatically otherwise FAIL")] [Postcondition(1, "Back to TestPage")] @@ -202,7 +202,10 @@ namespace Xamarin.Forms.Core.UnitTests VerticalOptions = LayoutOptions.EndAndExpand, Children = { - btnAdd + new Label + { + Text = "This is a Label on Page1" + } } }; diff --git a/tct-suite-vs/Tizen.XamarinForms.Manual.Tests/testcase/TSStepper.cs b/tct-suite-vs/Tizen.XamarinForms.Manual.Tests/testcase/TSStepper.cs index 4a0a865de..1508338c8 100755 --- a/tct-suite-vs/Tizen.XamarinForms.Manual.Tests/testcase/TSStepper.cs +++ b/tct-suite-vs/Tizen.XamarinForms.Manual.Tests/testcase/TSStepper.cs @@ -673,8 +673,8 @@ namespace Xamarin.Forms.Core.UnitTests [Property("AUTHOR", "Razin Farhan Hussain, razin.fh@samsung.com")] [Precondition(1, "This test will be passed on TV and TV Emulator automatically. (Due to limitation on TV)")] [Step(1, "Click run TC")] - [Step(2, "Seek Stepper for Width and Height after observe")] - [Step(3, "Pass If Height and Width of stepper changed otherwise false")] + [Step(2, "Chagne the value of slider for observing the width of Stepper")] + [Step(3, "Pass If Width of stepper changed otherwise false")] [Postcondition(1, "NA")] public async Task Stepper_Width_CHANGE_SIZE() { @@ -691,7 +691,8 @@ namespace Xamarin.Forms.Core.UnitTests HorizontalOptions = LayoutOptions.FillAndExpand, BackgroundColor = Color.Pink, Maximum = 500, - Minimum = 120 + Minimum = (Device.Idiom == TargetIdiom.Phone) ? 320 : 120, + Value = (Device.Idiom == TargetIdiom.Phone) ? 320 : 120, }; sliderHorizontal.ValueChanged += (o, e) => -- 2.34.1