You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Turns out you can't directly set session=false, but session will be set to false if the cookie has an expiration date, meaning if the code is changed to
Previously
```php
$page->setCookies([
\HeadlessChromium\Cookies\Cookie::create("session_false", "session_false", ["session" => false, "domain" => "example.com"]),
\HeadlessChromium\Cookies\Cookie::create("session_true", "session_true", ["session" => true, "domain" => "example.com"]),
])->await();
```
would create 2 cookies with session=true, but now it will create 1 cookie with session=false and 1 with session=true
closechrome-phpGH-675
The following code:
produce this output:
but I expected this output instead:
The text was updated successfully, but these errors were encountered: