RSelenium navigate long wait

update

  1. pageLoadStrategy

per Selenium documentation setting page load strategy should help avoid loading things.

fprof <- makeFirefoxProfile(list(
  "webdriver.load.strategy"="eager"
))

rD <- RSelenium::rsDriver(browser = "firefox", check = F, extraCapabilities = fprof)

When starting the server, the $pageLoadStrategy remains "normal". this github response to a user with the same question sadly seems outdated, as such slot is no longer in the client.

I can't seem to find proper documentation on how to manipulate the makeFirefoxProfile in R. Anybody have any tips?