'Scrape Default Value from Text Input Box in R
I am able to scrape the table on this Website:-
using RSelenium
package.
The issue is that the Circled Column above is returned as Blank:-
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]]
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|