Hey there, I'm reaching out because I'm struggling to figure out how to extract data from a webpage (""). Learning how to scrape data is my current project, and I'm specifically trying to gather contact information (Office, Fax, email) from the website mentioned. Unfortunately, I'm having difficulty identifying a specific CSS path using Selectorgadget in R, and the script I'm using looks something like this:
library(rvest)
page_name <- read_html("page html")
page_name %>%
html_node("selector gadget node") %>%
html_text()
I managed to scrape all the other data successfully, but I'm stuck on extracting the contact information. Any help or guidance would be greatly appreciated, as my head is spinning trying to figure this out. Thanks in advance!