'Webscraping returning character(empty)

I have the following code:

link = "https://www.funda.nl/en/koop/maastricht/"
page = read_html(link)

name <- page %>% html_nodes(".search-result__header-title") %>% html_text()

But it just returns name as character(empty) Does anyone know how I can solve this issue? Thanks in advance!



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source