html_form {rvest}R Documentation

Parse forms in a page.

Description

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


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()


[Package rvest version 0.3.2 Index]