1 package com.atlassian.selenium;
2
3 /**
4 * An abstract implementation of the SeleniumConfigurationClass that
5 * has methods that return default values for some of the configuration
6 * variables
7 * @since v3.12
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 }