I am trying to scrape referee game data using rvest
. See the code below:
page_ref<-read_html("https://www.pro-football-reference.com/officials/HittMa0r.htm")
ref_tab <- page_ref %>%
html_node("#games") %>%
html_text()
#html_table()
But rvest does not recognize any of the nodes for the "Games" table in the link. It can pull the data from the first table "Season Totals" just fine. So, am I missing something? In general, what does it mean if rvest
doesn't recognize a node identified with SelectorGadget and is clearly identified in the developer tools?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…