我正在尝试将表格中的数据抓取到https://www.flashscore.com/football/france/coupe-de-la-ligue-2005-2006/results/
我编写了以下代码,但是输出results
仍然为空。
library (rvest)
url <- "https://www.soccer24.com/france/coupe-de-la-ligue-2005-2006/results/"
results <- read_html(url) %>%
html_nodes(xpath='/html/body/div[6]/div[1]/div/div[1]/div[2]/div[7]/div[3]/table') %>%
html_table()
有人知道为什么results
为空以及如何抓取该表吗?