Merge pull request #583 from yashodha/CRM-12463
[civicrm-core.git] / tests / phpunit / CiviTest / CiviSeleniumSettings.php.txt
1 <?php
2
3 class CiviSeleniumSettings {
4
5 var $publicSandbox = false;
6
7 var $browser = '*firefox';
8
9 /**
10 * @var string SeleniumRC host name
11 */
12 var $rcHost = 'localhost';
13
14 /**
15 * @var int SeleniumRC port number
16 */
17 var $rcPort = 4444;
18
19 var $sandboxURL = 'http://devel.drupal.tests.dev.civicrm.org';
20
21 var $sandboxPATH = '';
22
23 var $username = 'demo';
24
25 var $password = 'demo';
26
27 var $adminUsername = 'USERNAME';
28
29 var $adminPassword = 'PASSWORD';
30
31 var $UFemail = 'noreply@civicrm.org';
32
33 /**
34 * @var int seconds
35 */
36 var $timeout = 30;
37
38 /**
39 * @var int|NULL seconds to wait for SeleniumRC to become available
40 *
41 * If you have custom scripts which launch Selenium and PHPUnit in tandem, then
42 * Selenium may initialize somewhat slowly. Set $serverStartupTimeOut to wait
43 * for Selenium to startup. If you launch Selenium independently or otherwise
44 * prefer to fail immediately, then leave the default value NULL.
45 */
46 var $serverStartupTimeOut = NULL;
47
48 function __construct() {
49 $this->fullSandboxPath = $this->sandboxURL . $this->sandboxPATH;
50 }
51
52 }
53 ?>