How to load multiple chrome extensions with RSelenium?

16 Views Asked by At

I found a way in which one can load a single Extension directly with RSelenium. The question here is how to load multiple extensions? Anyone?

  ZoteroConnector="C:/Users/Documents/URLsToZotero/Zotero.crx" 

  library(RSelenium)
  library(netstat)

  #Open browser
  eCaps <- list(chromeOptions = list(
       extensions = list(
          base64enc::base64encode(ZoteroConnector)
        )))

  rD <- rsDriver(port = free_port(),extraCapabilities=eCaps, browser ="chrome",chromever = "latest", verbose = F)
  remDr <- rD$client
0

There are 0 best solutions below