I am very new to web scraping and trying to practice by extracting data from a fitness website that tracks workouts. I need to log into the site, but I'm getting stuck even there. The page is SmartRow.
I attempted to use the SelectorGadget tool, but not of the elements seem to show up. Do I need to use selenium for this instead? Something else?
library(rvest)
url <- "http://smartrow.fit/#/profile"
login_page <- session(url)
page_form <- html_form(login_page)
filled_form <- set_values(page_form, email = "*****", password = "*****")