mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
17 lines
354 B
Text
17 lines
354 B
Text
|
<h1>Form</h1>
|
||
|
|
||
|
<form action="/form" method="post">
|
||
|
<p>
|
||
|
<input type="text" name="form[foo]" value="blah" id="foo"/>
|
||
|
</p>
|
||
|
|
||
|
<p>
|
||
|
<input type="text" name="form[bar]" value="fish" id="bar"/>
|
||
|
</p>
|
||
|
|
||
|
<p>
|
||
|
<input type="submit" name="form[awesome]" value="awesome"/>
|
||
|
<input type="submit" name="form[crappy]" value="crappy"/>
|
||
|
</p>
|
||
|
</form>
|