How can I scrape the data on this website - all the RVEST resources i am referring to are not helping. The website is: https://www.achc.org/find-a-provider/
I need the PCAB Compounding Pharmacies in the United States. I am using the following code
#Specifying the url for desired website to be scraped
url <- 'https://www.achc.org/find-a-provider/'
#Reading the HTML code from the website
read_html(url) %>% html_node('.company_name')
Thank you for your help