Sha256: e78343a9910c0fd92f69a754f23fbdf60a8ce5c0f06d7bd18a41e3fa949dc88a
Contents?: true
Size: 1.05 KB
Versions: 1
Compression:
Stored size: 1.05 KB
Contents
<html> <head> <title>Static Elements Page</title> </head> <body> <h2>Static Elements Page</h2> <h3>Text Field</h3> <input id="text_field_id" name="text_field_name" class="text_field_class" size="40" type="text" /> <h3>Select List</h3> <select name="sel_list_name" id="sel_list_id", class="sel_list_class"> <option value="option1">Test 1</option> <option value="option2">Test 2</option> </select> <h3>Button</h3> <button id="test_button" onclick="javascript:window.location='http://www.google.com'">Click Me!!</button> <h3>Link</h3> <a href="http://www.google.com" id="link_id" name="link_name" class="link_class" >Google Search</a> <h3>Check Boxes</h3> <input id="cb_id" name="cb_name" class="cb_class" type="checkbox" value="1" /> <h3>Radio Buttons</h3> <input type="radio" id="milk_id" name="milk_name" class="milk_class" value="Milk"> Milk <br /> <input type="radio" id="butter_id" name="butter_name" class="butter_class" value="Butter">Butter </body> </html>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
page-object-0.0.1 | features/html/static_elements.html |