Merge pull request #4882 from colemanw/CRM-15789
[civicrm-core.git] / tests / phpunit / CiviTest / CiviSeleniumSettings.php.txt
index 316cdc0431e1b52bd28cc1c45289cfd312087a23..37b868d4875c0f9cb22c6328aba6eca20fcd111c 100644 (file)
@@ -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,
+    // );;
   }
 
 }