i tried this code using r vest in order to extract some nested information from a link but it is returning NA in the last variable "links".
library("robotstxt")
library("dplyr")
library("rvest")
url<-"https://www.car.gr/classifieds/cars/?fs=1&condition=used&offer_type=sale&modified=15&st=private"
paths_allowed(domain = "https://www.car.gr/classifieds/cars/?fs=1&condition=used&offer_type=sale&modified=15&st=private" )
page<-read_html(url)
Title<-page %>% html_nodes(".title") %>% html_text()
Price<-page %>% html_nodes(".price-fmt") %>% html_text()
links<-page %>% html_nodes(".title") %>%
html_attr("h2") %>% paste0("https://www.car.gr", .)