Looks like your table ID is not a string. You may have meant to use index. Your index may be zero based, I don't recall what 1.8.6 used. If you can use chrome's inspector (or your browsers inspector) to help figure out IDs and Names of elements it makes life easier.
Check table within http://relevantcodes.com/watir-webdriver-cheat-sheet/ When in doubt use .exists? to confirm an element is there. puts $ie.frame(:index=>1).exists? # We expect to see true puts $ie.frame(:index=>1).table(:id=>'1').exists? # We expect to see true # Using pure index $ie.frame(:index=>1).table(:index=>1)[1][1].click sleep 2 # Give it time to display!!! Wait_until_present is not a feature in 1.8.6 $ie.frame(:index=> 1).table(:index => 1)[1][1].click #Click the table cell $ie.frame(:index=> 1).table(:index => 1)[1][1].text_field(:class=>"form-ctrl",:id=>"I'd").click $ie.frame(:index=> 1).table(:index => 1)[1][1].text_field(:class=>"form-ctrl",:id=>"I'd").set('hello') > -- -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. [email protected] http://groups.google.com/group/watir-general [email protected] --- You received this message because you are subscribed to the Google Groups "Watir General" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
