Let's say I want to select all on a page, copy all or save a page, what is the proper command for RSelenium? The example below seems to press the keys in sequence, what I'm trying to do is tell it to hold the "control" key while it presses "s"
library(RSelenium)
driver <- rsDriver()
remDr <- driver[["client"]]
remDr$navigate("https://www.google.com/")
remDr$sendKeysToActiveElement(list(key = "control", "s"))