CiviSeleniumSettings - Add adminApiKey
[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 var $sandboxURL = 'http://devel.drupal.tests.dev.civicrm.org';
10
11 var $sandboxPATH = '';
12
13 var $username = 'demo';
14
15 var $password = 'demo';
16
17 var $adminUsername = 'USERNAME';
18
19 var $adminPassword = 'PASSWORD';
20
21 var $adminApiKey = NULL; // civicrm_contact.api_key for admin
22
23 var $UFemail = 'noreply@civicrm.org';
24
25 /**
26 * @var string site API key
27 */
28 var $siteKey = NULL;
29
30 /**
31 * @var int seconds
32 */
33 var $timeout = 30;
34
35 function __construct() {
36 $this->fullSandboxPath = $this->sandboxURL . $this->sandboxPATH;
37 }
38
39 }
40 ?>