So if I understand correctly, you have a table that looks something like the 
following:

[code]
<table border=1>
  <tr>
    <td>...</td>
    <td><span>findme</span></td>
    <td><input type=text value=""></input></td>
    <td>...</td>
  </tr>
</table>
[/code]

And you want to located the text field and enter some value into it?  Well you 
could do the following:  Assuming that this text field is the first and only 
text field on the page, then some like this code would be able to access it and 
enter the value "I did it!" into that text field:

ie.textField(:index, "0").set("I did it!")

Does that make sense or am I way off?
---------------------------------------------------------------------
Posted via Jive Forums
http://forums.openqa.org/thread.jspa?threadID=5270&messageID=14675#14675
_______________________________________________
Wtr-general mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/wtr-general

Reply via email to