ITADN

Hangs when clearing cookies

#293Opensilenthill7 创建于 2026-01-18
kind:bugbug:1-repro-availabletopic:interaction
S
silenthill7commented
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 条评论