gpt4 book ai didi

javascript - 使用 RSelenium 和 rvest 抓取动态 Javascript 页面

转载 作者:行者123 更新时间:2023-12-05 03:59:37 26 4
gpt4 key购买 nike

我正在尝试从 this site 创建一个包含颜色 ID、描述和日期的数据框,它需要通过下拉菜单输入日期和月份,并返回,我认为,动态 JS 生成的页面。我是编码新手,认为这将是一个有趣的玩具项目。我想使用 RSelenium 自动进行下拉选择,并使用 rvest 抓取生成的内容。我希望的数据帧结构如下所示:

description, date, meta
"paragraph about birthday", Jun 01, "DAFFODIL PANTONE 17-1512 POWERFUL KNOWING EXPRESSIVE"

我尝试首先使用 for 循环在一天中遍历一年中的每个月,然后逐步获取每个月的每一天。

我坚持只是让循环每个月迭代一次,然后获取内容。我可以先在这部分任务上使用一些概念性的帮助,并感谢任何见解!

library(RSelenium)
library(rvest)
library(tidyverse)
library(xml2)

## first run: docker run -d -p 4445:4444 selenium/standalone-chrome
## open a new connection to Chrome
remDr <- RSelenium::remoteDriver(remoteServerAddr = "localhost",
port = 4445L,
browserName = "chrome")

remDr$open()
remDr$navigate("https://www.pantone.com/pages/iphone/iphone_colorstrology.html#___1__") #Entering our URL gets the browser to navigate to the page
remDr$screenshot(display = TRUE)

#### create list of month/days
month_day<- read_html(remDr$getPageSource()[[1]])
page_i <- month_day %>%
html_nodes(".list") %>%
html_children() %>%
html_text()

months <- page_i[1:12]
months <- (paste("'", months,"'", sep=''))
days <- page_i[13:43]
days <- as.numeric(days)


## create an object for month xpath elements
for (m in months){
elements <- paste0("//option[contains(text(),",months,")]")
}

## attempt at loop

total <- data.frame()

for (e in elements){
remDr$navigate("https://www.pantone.com/pages/iphone/iphone_colorstrology.html#___1__")
print(e)
month <- remDr$findElement(using = 'xpath', e)
month$clickElement()
day <- remDr$findElement(using = 'xpath', "//select[@id='lstDay']//option[5]") ## arbitrarily picking the 5th of each month
day$clickElement()
submit <- remDr$findElement(using = 'xpath', "/html[1]/body[1]/form[1]/div[1]/a[1]")
submit$clickElement()
html <- read_html(remDr$getPageSource()[[1]])
description <- html %>% html_nodes(xpath = "//tr//tr[2]//td[1]") %>% html_text() %>% gsub("^\\s+|\\s+$", "", .)
meta <- html %>% html_nodes(xpath = "//td[@id='tdBg']") %>% html_text() %>% gsub("^\\s+|\\s+$", "", .)
date <- html %>% html_nodes(xpath = "//td[@id='bgHeaderDate']//div") %>% html_text() %>% gsub("^\\s+|\\s+$", "", .)
df <- data.frame(cbind(description,meta,date))
total <- rbind(total, df)
}

没有收到任何错误,但每次的结果都出乎意料。它会在单个月/日组合上重复,例如 Jan05 * 12 次或 jan05 * 3 次、Apr 05 *3 次等。

最佳答案

我会回来更新这个以采纳我的建议。导航到该页面,然后使用 F12 在浏览器(例如 Chrome)中打开开发工具,然后转到网络选项卡。然后,选择月份和日期并点击立即查看。您会看到流量出现在网络选项卡中。该页面发出 POST xhr 请求以获取您在单击 View 图标后看到的内容。

enter image description here

POST 请求本身非常简单,并且有一个由您选择的月份和日期组成的正文(表单):

enter image description here

因此,您可以模仿该 POST 请求,然后解析响应。您提到的日期的示例可能是:

library(rvest)

body <- list('month' = 6,'day' = 1)
url <- 'https://www.pantone.com/pages/iphone/iphone_colorstrology_results.aspx'
page <- html_session(url) %>%
rvest:::request_POST(url, body = body, encode = "form") %>%
read_html()

date <- page %>% html_node('table table td') %>% html_text() %>%
gsub('^\\s+|\\s+$|[\r\n\t]', '', .)
description <- page %>% html_node('tr:nth-of-type(2) div') %>% html_text() %>%
gsub('^\\s+|\\s+$|[\r\n\t]', '', .)
meta <- page %>% html_nodes('#tdBg span') %>% html_text()

df <- data.frame(date, description, meta)

现在,这就是我稍后要重新访问的内容,上面的内容可以转换为一个函数,该函数返回一个列表或 df,可以组合成一个最终的数据帧。您可以提前生成每个主体并将其作为参数传递给函数。我会考虑使用 Session 对象 http Session,以提高重新使用当前连接的效率。月份和日期可以在循环/嵌套循环期间在表单主体中更新 - 取决于它们的生成方式。我是 R 的新手,知道它没有字典,但也许它有命名列表或类似的列表,您可以借此从原始页面中抓取月:可能的值关联以用于循环。我欢迎向更有经验的 R 人员学习如何实现上述目标——我的 R 知识存在一些差距,无法完成今天要解决的问题。有人可能会按照类似的思路发布答案,这会有所帮助。


生成 POST 请求正文:

查看标准年份的下拉列表,因此您可以在嵌套的 for 循环中生成所需的 POST 正文。我使用 1,12 表示月份,并使用 lubridate 返回基于标准年份的月份中的天数:

library(lubridate)

for(i in seq(1,12)){
date <- as.Date(gsub('placeholder',i, "2019-placeholder-01"), "%Y-%m-%d")
days <- days_in_month(date)[[1]]
for(j in seq(1,days)){
body = list('month' = i,'day' = j)
# pass body to function or add to an iterable for later looping
}
}

关于javascript - 使用 RSelenium 和 rvest 抓取动态 Javascript 页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57022242/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com