AbstractBrowser $browser:
Overrides Constraint::matches
protected function matches($browser) : bool { $cookie = $browser->getCookieJar() ->get($this->name, $this->path, $this->domain); if (!$cookie) { return false; } return $this->value === ($this->raw ? $cookie->getRawValue() : $cookie->getValue()); }