Using R I would like to download the HTML generated by the following page:
https://digital.fidelity.com/prgw/digital/research/quote/dashboard/summary?symbol=AAPL
The page source does NOT correspond to the HTML that is seen by the user. When I use R functions like readLines or download.file I get the page source, which is not what I want. I want the HTML seen by the user, which I'd like to read into a character vector.
Can this be done? If so, please provide details.