_generated\TestGuyActions::resetCookie PHP Method

resetCookie() public method

Unsets cookie with the given name. You can set additional cookie params like domain, path in array passed as last argument.
See also: Codeception\Lib\InnerBrowser::resetCookie()
public resetCookie ( $name, array $params = null ) : mixed
$params array
return mixed
    public function resetCookie($name, $params = null)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\Action('resetCookie', func_get_args()));
    }
TestGuyActions