Hi there I am not sure if i am using the wrong watir syntax or if there is something wrong with my watir. Below if the code that I am writing to go through each row of a table body. Be
e.frame(:name => "content").frame(:name => "main").tbody(:class => "blacklabel").each(){|i|.....}
when i run this code i get a missing error code. Also when i try
e.frame(:name => “content”).frame(:name => “main”).tbody(:class => “blacklabel”).length()
I get a missing method error. Below is the website that i am using.

You want to iterate over the rows collection rather than the table body – ie you need to call
rows()before theeach(). So you want to do:The tbody element uses the TableSection class. The TableSection API can be seen here – http://rdoc.info/gems/watir-classic/Watir/TableSection.