如何清除 Rselenium 内部网络浏览器中的历史记录?

How to clear history in Rselenium's internal web browser?

在网络浏览器中可以清除历史记录。

如何在 RSelenium 中使用 R 命令清除 firefox 浏览器中的历史记录?

Possible to disable firefox and chrome default caching?

RSelenium 和 firefox 中你可以按如下方式传递:

fprof <- makeFirefoxProfile(
  list(
    "browser.cache.disk.enable" = FALSE,
    "browser.cache.memory.enable" = FALSE,
    "browser.cache.offline.enable" = FALSE,
    "network.http.use-cache" = FALSE
  )
)
remDr <- remoteDriver(extraCapabilities = fprof)
remDr$open()