From: Pranjal Jain Date: 2008-04-03T18:07:26+09:00 Subject: To access row inside a table Hi I am having a doubt regarding the basic ruby. I want to access the row 7 in the table 9 of a web page. If I am trying to access table only I am not facing any problem(i.e) $ie.table(:id =>"", :index =>9).flash(20) But if I am trying to access a row inside a table, it gives me error. The command I used is as follows: $ie.table(:id =>"", :index =>9).row(:value => "",:index => 7).flash(20) The error I get is as follows: Loaded suite temporary Started Web page opened successfully .E Finished in 15.852 seconds. 1) Error: test_b(TestCase): NoMethodError: private method `row' called for # temporary.rb:88:in `test_b' 2 tests, 0 assertions, 0 failures, 1 errors Can anyone suggest how to overcome this problem ? Thanks in advance. -- Posted via http://www.ruby-forum.com/.