hello
I have been trying to get data from Decentraland | Market History and sales trends | NonFungible.com
I tried to select Asset ID with this code
library(rvest)
library(dplyr)
link = "Decentraland | Market History and sales trends | NonFungible.com"
page = read_html(link)
Asset= page %>% html_nodes(".dEXmFm:nth-child(2)") %>% html_text()
Asset
but I got
Asset
character(0)
any help or advice will be appreciated