Home
last modified time | relevance | path

Searched refs:cookieArray (Results 1 – 3 of 3) sorted by relevance

/plugin/combo/vendor/php-webdriver/webdriver/lib/
H A DCookie.php33 * @param array $cookieArray The cookie fields; must contain name and value.
36 public static function createFromArray(array $cookieArray) argument
38 if (!isset($cookieArray['name'])) {
41 if (!isset($cookieArray['value'])) {
44 $cookie = new self($cookieArray['name'], $cookieArray['value']);
46 if (isset($cookieArray['path'])) {
47 $cookie->setPath($cookieArray['path']);
49 if (isset($cookieArray['domain'])) {
50 $cookie->setDomain($cookieArray['domai
[all...]
H A DWebDriverOptions.php92 $cookieArray = $this->executor->execute(
97 if (!is_array($cookieArray)) { // Microsoft Edge returns null even in W3C mode => emulate proper behavior
101 return Cookie::createFromArray($cookieArray);
127 foreach ($cookieArrays as $cookieArray) {
128 $cookies[] = Cookie::createFromArray($cookieArray);
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Cookie/
H A DCookieJar.php21 * @param array $cookieArray Array of SetCookie objects or a hash of
25 public function __construct($strictMode = false, $cookieArray = []) argument
29 foreach ($cookieArray as $cookie) {