This is some html and javascript. You can select from the select-list. Click OK and the selected index will show in the two text fields. The first text field is populated using document.froms to access the select-list. The second select-list is populated by accessing the selected option in the select-list using internet explorer specific java-script method document.all (document.all does not work in any other browser than internet explorer).
<script>
function test() {
document.all("y").value=document.forms[0].x.selectedIndex
var selIdx = document.all("x").selectedIndex
document.forms[0].z.value=selIdx
}
</script>
<form>
<select name="x">
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
<p>
y: <input type="text" name="y" value=""><br>
z: <input type="text" name="z" value="">
<input type="button" name="b" value="ok" onClick="test()">
</form>
Then I make a rubry watir script to test this html-page:
require 'rubygems'
require 'watir'
browser = Watir::Browser.new
browser.goto("http://localhost:8080/watir/simple.html")
browser.select_list(:name => "x").select_value "2"
browser.button(:name => "b").click
When this page is accessed with watir then the second text filed will contain the value "Undefined". If I omit
browser.select_list(:name => "x").select_value "2"
it will correctly display 0 in both text fields.
So, it seams that watir select_value-function in some way does not work with internet explorer document.all when accessing the java-script selectedIndex property.
Is there a work around to this? Unfortunately the document.all-java-script can not be replaced in the code. It has to be some kind of change in ruby/watir.