Scrape password-protected website in R

You can use RSelenium. I have used the dev version as you can run phantomjs without a Selenium Server. # Install RSelenium if required. You will need phantomjs in your path or follow instructions # in package vignettes # devtools::install_github(“ropensci/RSelenium”) # login first appURL <- ‘http://subscribers.footballguys.com/amember/login.php’ library(RSelenium) pJS <- phantom() # start phantomjs remDr <- … Read more