Hangs when clearing cookies
kind:bugbug:1-repro-availabletopic:interaction
I've tried clearing cookies with both `browser.clear_cookies().await` and `browser.set_cookies(vec![]).await` but both never resolve. Here is my code:
```rs
let (mut browser, mut handler) = chromiumoxide::Browser::launch(
chromiumoxide::BrowserConfig::builder()
.with_head()
.user_data_dir("browser_data") // I have tried without this
.hide()
.disable_cache() // And without this too
.build()?,
)
.await?;
browser.clear_cookies().await?;
```
My environment is Arch Linux, dwm
0 条评论