I am trying to use RSelenium. Here is what I am doing:
library(RSelenium)
driver<- rsDriver(browser=c(\"chrome\"))
remDr <- driver[[\"client\"]]
remD
You need to use extraCapabilities
and set the proxy using the same
cprof <- list(chromeOptions =
list(args = list("--proxy-server=http://118.69.61.212:53281")))
driver<- rsDriver(browser=c("chrome"), extraCapabilities = cprof)
driver$client$navigate("http://ipinfo.io")
And you can see that chrome now uses the proxy config