Hard to tell without seeing an html snippet of what you're trying to test.
Now that you have the table, I assume you want to iterate through rows.
table.rows.each do |row|
do something with the row
end
-Charley
On 6/18/07, B Smith <[EMAIL PROTECTED]> wrote:
I got this far on my own
table = ie.table(:index,5)
v_3 = table[1][3].to_s
v_4 = table[1][4].to_s
v_5 = table[1][5].to_s
v_6 = table[1][6].to_s
variable = v_3 + " " + v_4 + " " + v_5 + " " + v_6
puts variable
This now returns the HEADER row from the correct table in the page. HOW DO
I set this to iterate thru all the threads??
I saw a forum posting for counting links :: ie.(:index,1).links.length,
but it isn't working for my variable.
thanks,
_______________________________________________
Wtr-general mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/wtr-general
_______________________________________________
Wtr-general mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/wtr-general