[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")]
VerticalOptions = LayoutOptions.EndAndExpand,
Children =
{
- btnAdd
+ new Label
+ {
+ Text = "This is a Label on Page1"
+ }
}
};
[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()
{
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) =>