I am trying to access this website using RSelenium
wd <- getwd()
eCaps <- list(
chromeOptions =
list(prefs = list(
"profile.default_content_settings.popups" = 0L,
"download.prompt_for_download" = FALSE,
"download.default_directory" = wd
)
)
)
rD <- rsDriver(extraCapabilities = eCaps)
remDr <- rD$client
remDr$navigate("https://username:password@urlhere/")
It seems to be not working. I need to access the website in R, because rest of my script is written in R.