html_form {rvest} | R Documentation |
Parse forms in a page.
html_form(x)
x |
A node, node set or document. |
HTML 4.01 form specification: http://www.w3.org/TR/html401/interact/forms.html
html_form(read_html("https://hadley.wufoo.com/forms/libraryrequire-quiz/")) html_form(read_html("https://hadley.wufoo.com/forms/r-journal-submission/")) box_office <- read_html("http://www.boxofficemojo.com/movies/?id=ateam.htm") box_office %>% html_node("form") %>% html_form()