X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=tests%2Fphpunit%2FCiviTest%2FCiviSeleniumSettings.php.txt;h=37b868d4875c0f9cb22c6328aba6eca20fcd111c;hb=898f38ad65fe945087a16062f22c66bdf9e36e77;hp=316cdc0431e1b52bd28cc1c45289cfd312087a23;hpb=7791c05ff3b621589d135f3a01189d7f0a563db9;p=civicrm-core.git diff --git a/tests/phpunit/CiviTest/CiviSeleniumSettings.php.txt b/tests/phpunit/CiviTest/CiviSeleniumSettings.php.txt index 316cdc0431..37b868d487 100644 --- a/tests/phpunit/CiviTest/CiviSeleniumSettings.php.txt +++ b/tests/phpunit/CiviTest/CiviSeleniumSettings.php.txt @@ -25,7 +25,7 @@ class CiviSeleniumSettings { var $password = 'demo'; var $adminUsername = 'USERNAME'; - + var $adminPassword = 'PASSWORD'; var $adminApiKey = NULL; // civicrm_contact.api_key for admin @@ -42,6 +42,12 @@ class CiviSeleniumSettings { */ var $timeout = 30; + /** + * @var array + * @see CiviSeleniumTestCase::setCookies + */ + var $cookies = array(); + /** * @var int|NULL seconds to wait for SeleniumRC to become available * @@ -54,6 +60,12 @@ class CiviSeleniumSettings { function __construct() { $this->fullSandboxPath = $this->sandboxURL . $this->sandboxPATH; + // $this->cookies[] = array( + // 'name' => 'mycookie', + // 'value' => 'myvalue', + // 'path' => '/', + // 'max_age' => 24*60*60, + // );; } }