从 R 中的文本输入框中抓取默认值

发布于 2025-01-11 23:08:49 字数 1241 浏览 0 评论 0原文

我可以在这个网站上抓取表格:-

https://dailyfantasynerd.com/optimizer/draftkings/nba

使用 RSelenium 包。

输入图片此处描述

问题是上面的带圆圈的列返回为空白:-

在此处输入图像描述

现在,此列是可编辑的,但我只需要刮掉其默认值(例如 50.7第一行)。

我正在使用以下代码:-

library(RSelenium)
library(rvest)
library(dplyr)

driver = rsDriver(browser = c("firefox"), port = 0001L)

remDr <- driver[["client"]]

url <- 'https://dailyfantasynerd.com/optimizer/draftkings/nba'
remDr$navigate(url)

username <- remDr$findElement(using = "id", value = "input-username")
username$sendKeysToElement(list("xx"))

#send password and Enter
passwd <- remDr$findElement(using = "id", value = "input-password")
passwd$sendKeysToElement(list("xx", "\uE007"))


#get all the tables from webapage 
df = (remDr$getPageSource()[[1]] %>% 
  read_html() %>% html_table())[[7]]

I am able to scrape the table on this Website:-

https://dailyfantasynerd.com/optimizer/draftkings/nba

using RSelenium package.

enter image description here

The issue is that the Circled Column above is returned as Blank:-

enter image description here

Now, this Column is editable but I only need to scrape its Default Value (for example 50.7 in the first row).

I am using the following code:-

library(RSelenium)
library(rvest)
library(dplyr)

driver = rsDriver(browser = c("firefox"), port = 0001L)

remDr <- driver[["client"]]

url <- 'https://dailyfantasynerd.com/optimizer/draftkings/nba'
remDr$navigate(url)

username <- remDr$findElement(using = "id", value = "input-username")
username$sendKeysToElement(list("xx"))

#send password and Enter
passwd <- remDr$findElement(using = "id", value = "input-password")
passwd$sendKeysToElement(list("xx", "\uE007"))


#get all the tables from webapage 
df = (remDr$getPageSource()[[1]] %>% 
  read_html() %>% html_table())[[7]]

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文