File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 2020public class ResponsiveValidatorCompatibleTest {
2121
2222 private static WebDriver driver ;
23+ private static long start ;
2324
2425 public static void main (String [] args ) {
2526 ManualTestSupport .deleteOutputDirectory ();
2627 ResponsiveValidatorCompatibleTest test = new ResponsiveValidatorCompatibleTest ();
27- long start = System .currentTimeMillis ();
2828 try {
2929 test .testThatResponsiveValidatorWorks ();
3030 } finally {
@@ -48,6 +48,8 @@ public void testThatResponsiveValidatorWorks() {
4848 driver .get ("http://visual.itarray.net" );
4949 driver .manage ().window ().maximize ();
5050
51+ start = System .currentTimeMillis ();
52+
5153 TestPage page = new TestPage (driver );
5254
5355 ResponsiveUIValidator uiValidator = new ResponsiveUIValidator (driver );
Original file line number Diff line number Diff line change @@ -31,7 +31,6 @@ public class ResponsiveValidatorNewDSLTest {
3131 public static void main (String [] args ) {
3232 ManualTestSupport .deleteOutputDirectory ();
3333 ResponsiveValidatorNewDSLTest test = new ResponsiveValidatorNewDSLTest ();
34- start = System .currentTimeMillis ();
3534 try {
3635 test .testThatResponsiveValidatorWorks ();
3736 } finally {
@@ -64,6 +63,8 @@ public void testThatResponsiveValidatorWorks() {
6463 driver .get ("http://visual.itarray.net" );
6564 driver .manage ().window ().maximize ();
6665
66+ start = System .currentTimeMillis ();
67+
6768 TestPage page = new TestPage (driver );
6869
6970 ResponsiveUIValidator responsiveUIValidator = new ResponsiveUIValidator (driver );
Original file line number Diff line number Diff line change 2424public class ResponsiveValidatorTest {
2525
2626 private static WebDriver driver ;
27+ private static long start ;
2728
2829 public static void main (String [] args ) {
2930 ManualTestSupport .deleteOutputDirectory ();
3031 ResponsiveValidatorTest test = new ResponsiveValidatorTest ();
31- long start = System .currentTimeMillis ();
3232 try {
3333 test .testThatResponsiveValidatorWorks ();
3434 } finally {
@@ -52,6 +52,8 @@ public void testThatResponsiveValidatorWorks() {
5252 driver .get ("http://visual.itarray.net" );
5353 driver .manage ().window ().maximize ();
5454
55+ start = System .currentTimeMillis ();
56+
5557 TestPage page = new TestPage (driver );
5658
5759 ResponsiveUIValidator uiValidator = new ResponsiveUIValidator (driver );
You can’t perform that action at this time.
0 commit comments