html_form
From rvest v0.3.2
by Hadley Wickham
Parse forms in a page.
Parse forms in a page.
Usage
html_form(x)
Arguments
- x
A node, node set or document.
See Also
HTML 4.01 form specification: http://www.w3.org/TR/html401/interact/forms.html
Examples
library(rvest)
# NOT RUN {
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()
# }
Community examples
Looks like there are no examples yet.