I wish to verify that when I am on a certain page that a certain class exists. The class is contained in a table which is named voucher. Problem is there are many tables with the name voucher on this page. :-(
Normally to find elements I do something like:
assert @browser.image(:class, "class1").exists?
But as this is contained in the 1 of the voucher tables it means it can't find the element. I need a way to identify the table that the elements exists within.
Considering the fact that there are multiple tables named the same, how can I do this?
(btw - it is my intention to get unique names on the different tables but I need to get a solution to this problem first!)