[Non-ACR][Tizen.Maps.Manual.Tests] resize text and buttons in map view 63/258063/5
authorchakradhar pogiri <v.pogiri@samsung.com>
Mon, 10 May 2021 04:55:52 +0000 (10:25 +0530)
committerchakradhar pogiri <v.pogiri@samsung.com>
Mon, 10 May 2021 10:23:22 +0000 (10:23 +0000)
Change-Id: Ib540379630595025a3aaa5aaf60a72fef923db37
Signed-off-by: chakradhar pogiri <v.pogiri@samsung.com>
tct-suite-vs/Tizen.Maps.Manual.Tests/testcase/support/MapViewHelper.cs

index 01cceb8..30b4467 100755 (executable)
@@ -95,8 +95,8 @@ namespace Tizen.Maps.Tests
         {
             int btnXPos = 20;
             int btnYPos = 150;
-            int btnXSize = 100;
-            int btnYSize = 80;
+            int btnXSize = 50;
+            int btnYSize = 40;
             int btnMargin = 10;
 
             Button zoomIn = new Button(s_window) { Text = "<span color=#FFFFFF>+</span>" };
@@ -186,19 +186,22 @@ namespace Tizen.Maps.Tests
 
             s_label = new Label(s_window) { Text = testStep };
             s_label.LineWrapType = WrapType.Word;
+            s_label.SlideMode = LabelSlideMode.Auto;
             s_label.Resize(w - 40, 30);
             s_label.Move(20, 20);
             s_label.Show();
 
             Label label1 = new Label(s_window) { Text = "<span color=#FFFFFF>2. If gesture is not supported, do the test with buttons instead.</span>" };
             label1.LineWrapType = WrapType.Word;
+            label1.SlideMode = LabelSlideMode.Auto;
             label1.Resize(w - 40, 30);
             label1.Move(20, 50);
             label1.Show();
 
             Label label2 = new Label(s_window) { Text = "<span color=#FFFFFF>3. Press Back key to go back to the test page</span>" };
             label2.LineWrapType = WrapType.Word;
-            label2.Resize(w - 40, 30);
+            label2.SlideMode = LabelSlideMode.Auto;
+            label2.Resize((w - 40), 30);
             label2.Move(20, 80);
             label2.Show();