我正在尝试使用RSelenium访问this网站
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/")
似乎无法正常工作。我需要访问R中的网站,因为我的其余部分都是用R语言编写的。