I\'m attempting to scrape data from http://www.footballoutsiders.com/stats/snapcounts, but I can\'t change the fields in the drop down boxes on the site (\"team\", \"week\",
You can capture the session produced when the form is submitted and use that session as input to html_nodes
:
d <- submit_form(session=pgsession, form=filled_form)
y <- d %>%
html_nodes("table") %>%
.[[2]] %>%
html_table(header=TRUE)
dim(y)
#[1] 1695 11
Otherwise, if you use read_html(url)
you are reading the original page.