Is there any way to scrape data in R for:
General Information/Launch Date from this Website: https://www.euronext.com/en/products/etfs/LU1437018838-XAMS/market-information
So far, I have used this code, but the generated XML file does not contain Information that I Need:
library(rvest)
library(XML)
url <- paste("https://www.euronext.com/en/products/etfs/LU1437018838-XAMS/market-information",sep="")
download.file(url, destfile = "scrapedpage.html", quiet=TRUE)
content <- read_html("scrapedpage.html")
content1 <- htmlTreeParse(content, error=function(...){}, useInternalNodes = TRUE)