7

我正在使用RSelenium导航到包含下载文件的按钮的网页。我使用 RSelenium 单击下载文件的此按钮。但是,这些文件默认下载在我的文件夹“下载”中,而我想将文件下载到我的工作目录中。我尝试如下指定一个 chrome 配置文件,但这似乎没有完成这项工作:

wd <- getwd()
cprof <- getChromeProfile(wd, "Profile 1")
remDr <- remoteDriver(browserName= "chrome", extraCapabilities = cprof) 

该文件仍下载在“下载”文件夹中,而不是我的工作目录中。如何解决?

4

3 回答 3

11

该解决方案涉及设置https://sites.google.com/a/chromium.org/chromedriver/capabilities中概述的适当 chromeOptions 。这是 Windows 10 盒子上的示例:

library(RSelenium)
eCaps <- list(
  chromeOptions = 
    list(prefs = list(
      "profile.default_content_settings.popups" = 0L,
      "download.prompt_for_download" = FALSE,
      "download.default_directory" = "C:/temp/chromeDL"
    )
    )
)
rD <- rsDriver(extraCapabilities = eCaps)
remDr <- rD$client
remDr$navigate("http://www.colorado.edu/conflict/peace/download/")
firstzip <- remDr$findElement("xpath", "//a[contains(@href, 'zip')]")
firstzip$clickElement()
> list.files("C:/temp/chromeDL")
[1] "peace.zip"
于 2017-03-20T21:27:45.503 回答
2

我一直在尝试替代方案,似乎@Bharath 关于放弃摆弄首选项的第一条评论(似乎不可能这样做)而是将文件从默认下载文件夹移动到所需文件夹是要走的路。使其成为可移植解决方案的诀窍是找到默认下载目录的位置——当然它因操作系统而异你可以这样获得)——你还需要找到用户的用户名

desired_dir <- "~/Desktop/cool_downloads" 
file_name <- "whatever_I_downloaded.zip"

# build path to chrome's default download directory
if (Sys.info()[["sysname"]]=="Linux") {
    default_dir <- file.path("home", Sys.info()[["user"]], "Downloads")
} else {
    default_dir <- file.path("", "Users", Sys.info()[["user"]], "Downloads")
}

# move the file to the desired directory
file.rename(file.path(default_dir, file_name), file.path(desired_dir, file_name))
于 2017-03-20T18:48:53.943 回答
-1

看看这种替代方式。您的下载文件夹应该是空的。

# List the files inside the folder
down.list <- list.files(path = "E:/Downloads/",all.files = T,recursive = F)

# Move all files to specific folder
file.rename(from = paste0("E:/Downloads/",down.list),to = paste0("E:/1/scrape/",down.list))
于 2019-11-12T02:52:17.493 回答