Sha256: 7fa4efb442541c83b19a05d3acd6c9a05ee2376e09c8666e9154a0cf896eed91

Contents?: true

Size: 1.87 KB

Versions: 4

Compression:

Stored size: 1.87 KB

Contents

<html>
<head>
<title>
Test page for Check Boxes
</title>

<script>

function setButtonState( )
{
	var button = document.getElementById('foo');
    if (button.disabled ){
	 
       button.disabled = false
    } else {
        button.disabled = true
    }
}
</script>

  <link rel="stylesheet" type="text/css" href="watir_unit_tests.css">

</head>
<body>
CVS Revision: $Revision $
<br>
<br>
<table>
<tr>
<td>
CheckBox 1  <input type = checkbox name = box1  class=check_box_style >
</td>
</tr>

<tr>
<td>
Disabled<input type = checkbox name = box2 disabled>
</td>
</tr>
<tr>
<td>
Set<input type = checkbox name = box3 checked>
</td>
</tr>
<tr><td>
These 2 have ids
<br>
id= box4 value=1  <input type ='checkbox' id='box4' name='verify1' value='1' checked>
<br>
id = box4a value=2  <input type = 'checkbox' id = 'box4a' name= 'verify2' value = '2' checked>
</tr>
<br>
<tr>
These boxes have the same name, but different values
</tr>

<tr><td>
Name = box4 value=1  <input type = checkbox name = box4 value = 1 checked>
</tr>
<tr><td>
Name = box4 value=2  <input type = checkbox name = box4 value = 2>
</tr>
<tr><td>
Name = box4 value=3  <input type = checkbox name = box4 value = 3>
</tr>
<tr><td>
Name = box4 value=4  <input type = checkbox name = box4 value = 4>
</tr>
<tr><td>
Name = box4 value=5  <input type = checkbox name = box4 value = 5 disabled title="box4-value5">
</tr>

<tr><td>
Name = box5 value=1  <input type = checkbox name = box5 value = 1 onClick='javascript:setButtonState( )'>
</tr>

<tr><td>
<input type = button id = foo value = foo disabled=disabled ><td> This button is used with checkbox box5. This button is enabled if the checkbox is enabled
</tr>

<tr><td>
Milk<input type = checkbox name = "box6" value ="Milk">
<br>
Tea<input type = checkbox name = "box6" value ="Tea">
</tr>


</table>
</body>
</html>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
watir-1.6.6 unittests/html/checkboxes1.html
watir-1.6.6.rc2 unittests/html/checkboxes1.html
watir-1.6.6.rc1 unittests/html/checkboxes1.html
watir-1.6.2 unittests/html/checkboxes1.html