Cookie Actions

Centum\Codeception\Actions\CookieActions

grabCookies

Grab the HTTP Cookies from the Container.

grabCookies(): Centum\Interfaces\Http\CookiesInterface

grabCookieValue

grabCookieValue(
    non-empty-string $name
): ?string

seeCookie

Check that a Cookie exists.

seeCookie(
    non-empty-string $name
): void

dontSeeCookie

Check that a Cookie does not exist.

dontSeeCookie(
    non-empty-string $name
): void

seeCookieValueIs

seeCookieValueIs(
    non-empty-string $name,
    string $expectedValue
): void

dontSeeCookieValueIs

dontSeeCookieValueIs(
    non-empty-string $name,
    string $expectedValue
): void