[ANSWERED] html – Reading off links on a site and storing them in a list
Solution 1 : In order to extract all url, I recommend using the css selector “.field-item li a” and subset according to a pattern. links <- read_html(url) %>% html_nodes(".field-item li…