features/html/static_elements.html in druid-ts-1.1.8 vs features/html/static_elements.html in druid-ts-1.2.0

- old
+ new

@@ -16,10 +16,11 @@ <label for="sel_list_id">Select List</label> <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> + <option value="option3">Test/Test 3</option> </select> <select multiple="multiple" id="sel_list_multiple"> <option value="option1" selected="true">Test 1</option> <option value="option2">Test 2</option> @@ -62,10 +63,17 @@ <label for="milk_id">Radio</label> <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 + <br/> + <label>Radio Button Group</label> + <input type="radio" name="fav_cheese" value="ched">Cheddar</input> + <input type="radio" name="fav_cheese" value="emmen">Emmental</input> + <input type="radio" name="fav_cheese" value="muen">Muenster</input> + <br/> + <div id="div_id" name="div_name" class="div_class" title="div_title"> page-object rocks! </div> <div data-entity="test"> @@ -79,17 +87,26 @@ <label id="label_id" name="label_name" class="label_class"> page-object is the best! </label> <table id='table_id' name='table_name' class='table_class' border='1'> - <tr> - <td>Data1</td><td>Data2</td> - </tr> - <tr> - <td>Data3</td> - <td id='cell_id', name='cell_name' class='cell_class'>Data4</td> - </tr> + <thead> + <tr> + <th>Table</th> + <th>Header</th> + </tr> + </thead> + <tbody> + <tr> + <td>Data1</td> + <td>Data2</td> + </tr> + <tr> + <td>Data3</td> + <td id='cell_id', name='cell_name' class='cell_class'>Data4</td> + </tr> + </tbody> </table> <table id="table_with_thead_id" border='1'> <thead> <tr> @@ -174,8 +191,8 @@ </details> <figure id='figure_id'> <img src="images/img_pulpit.jpg" alt="The Pulpit Rock" width="304" height="228"> </figure> - + This text have <b id="b_id" class="b_class" name="b_name">some text in bold</b> </body> </html>