File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
java/client/test/org/openqa/selenium Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ public class ClickTest extends AbstractDriverTestCase {
29
29
protected void setUp () throws Exception {
30
30
super .setUp ();
31
31
32
- driver .get (appServer . whereIs ( "clicks.html" ) );
32
+ driver .get (pages . clicksPage );
33
33
}
34
34
35
35
@ Override
Original file line number Diff line number Diff line change 22
22
public class Pages {
23
23
public String alertsPage ;
24
24
public String clickJacker ;
25
+ public String clicksPage ;
25
26
public String simpleTestPage ;
26
27
public String simpleXmlDocument ;
27
28
public String xhtmlTestPage ;
@@ -68,6 +69,7 @@ public Pages(AppServer appServer) {
68
69
childPage = appServer .whereIs ("child/childPage.html" );
69
70
chinesePage = appServer .whereIs ("cn-test.html" );
70
71
clickJacker = appServer .whereIs ("click_jacker.html" );
72
+ clicksPage = appServer .whereIs ("clicks.html" );
71
73
draggableLists = appServer .whereIs ("draggableLists.html" );
72
74
dragAndDropPage = appServer .whereIs ("dragAndDropTest.html" );
73
75
droppableItems = appServer .whereIs ("droppableItems.html" );
You can’t perform that action at this time.
0 commit comments