1 package com.atlassian.selenium;
2
3
4
5
6
7
8
9 public abstract class AbstractSeleniumConfiguration implements SeleniumConfiguration {
10
11 public long getActionWait()
12 {
13 return 400;
14 }
15
16 public long getPageLoadWait()
17 {
18 return 50000;
19 }
20
21 public long getConditionCheckInterval()
22 {
23 return 100;
24 }
25
26 public String getFirefoxProfileTemplate()
27 {
28 return null;
29 }
30
31 public boolean getSingleWindowMode()
32 {
33 return false;
34 }
35
36
37
38
39
40
41 public String getPerformanceReportLocation()
42 {
43 return null;
44 }
45
46
47
48
49
50
51 public boolean getShowAutoGeneratedPerformanceEvents()
52 {
53 return false;
54 }
55
56 }