I am trying to webscrape this website.
As you can see there is one main link and a series of titles that you can click to have access to text. What I would like to get in the end is the text in all these sublinks of the main link. I am not very familiar with webscraping so having a look around I thought that something like:
library(rvest)
x <- read_html("https://www.ecb.europa.eu/press/pressconf/html/index.en.html")
x1 <- html_nodes(x, ".doc-title a") # this using selector gadget
This attempt however badly fails. Is there anyone who can help me with that?