Hi All,

I am using Watir 1.6.2 and was running my test on Firefox 2 for the
first time.

I found that the following code is not getting executed on Firefox:
I have been able to execute it successfully on IE. Is it not
supported?
==================================================================
$ie.table(:index,1).body(:index, 1).each do | row |

                        row.each do | cell |
                                if found == 1
                                        if cell.text() =~ /edit/
                                                puts 'Editting starts 
............'
                                                puts ' '
                                                found=2
                                                cell.link(:index,1).click
                                                break
                                        end
                                end
                                if cell.text() =~ /#{ono}/
                                      # puts 'Found Row for order number : ' + 
cell.text()
                                       found = 1
                                       break
                                end

                        end
                        if found == 2
                          break
                        end

                end
==================================================================

Thanks,
Natasha
--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/watir-general
-~----------~----~----~----~------~----~------~--~---

Reply via email to