> even I am able to get the text
> ie.table(:id, "ivr_template:params").div(:index,1).text = lokesh or
> ie.table(:id, "ivr_template:params")[2][2].text
>


when you do this
ie.table(:id, "ivr_template:params").div(:index,1).text

it's just resolving to a string.  you have to get hold of the
text_field object like
ie.table(:id, "ivr_template:params").div(:index,1).text_field(:index,
1).set('lokesh')

try playing with it in irb, there you can interact with your page and
see how the page responds and what's the best way of accessing the
page element
-- 
You received this message because you are subscribed to the Google Groups 
"Watir General" group.
To post to this group, send email to watir-general@googlegroups.com
Before posting, please read the following guidelines: 
http://wiki.openqa.org/display/WTR/Support
To unsubscribe from this group, send email to 
watir-general-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/watir-general

Reply via email to