问题 I have an issue webscarping this website. If I try the "conventional" way, it works fine like in the code below: base_url <- "https://www.ecb.europa.eu" year_urls1 <- paste0(base_url, "/press/pressconf/", 2000:2008, "/html/index_include.en.html") scrape_page <- function(url) { Sys.sleep(runif(1)) html_attr(html_nodes(read_html(url), ".doc-title a"), name = "href") } all_pages1 <- lapply(year_urls1, scrape_page) all_pages1 <- paste0(base_url, unlist(all_pages1)) But now let's assume for x