mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
13 lines
310 B
Text
13 lines
310 B
Text
|
|
<p>
|
|
<a href="/host">Relative Host</a>
|
|
<a href="<%= params[:absolute_host] %>/host">Absolute Host</a>
|
|
</p>
|
|
|
|
<form action="/host">
|
|
<p><input type="submit" value="Relative Host"/></p>
|
|
</form>
|
|
|
|
<form action="<%= params[:absolute_host] %>/host">
|
|
<p><input type="submit" value="Absolute Host"/></p>
|
|
</form>
|