I have been trying to scrape the polling time series from a website that is saved as javascript. So far, I end up with an empty list once selecting the "circle" nodes. Code below, any point much appreciated.
library(rvest)
library(V8)
url = 'https://www.politico.eu/europe-poll-of-polls/belgium/'
dta = read_html(url) %>%
html_node('svg') %>%
html_node('g') %>%
html_node('circle')