Closed awosoga closed 7 months ago
If you are using chromote (the default), you can use Storage.getCookies:
library(selenider)
session <- selenider_session()
session$driver$Storage$getCookies()
If you are using selenium, you can use SeleniumSession$get_cookies()
:
library(selenider)
session <- selenider_session("selenium")
session$driver$get_cookies()
excellent, thank you!
Is there a selenider equivalent to RSelenium's
getAllCookies()
?