I would like to web scrape this web site https://www.askramar.com/Ponuda . First, I should scrape all the links that lead to each car page. The extended links look like this in the html structure:
I tried the following code but I get an empty object in R:
url <- "https://www.askramar.com/Ponuda"
html_document <- read_html(url)
links <- html_document %>%
html_nodes(xpath = '//*[contains(concat("", @class, ""), concat("", "vozilo", ""))]') %>%
html_attr(name = "href")
Is it javascript on web page? Please help! Thanks!