Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望验证当我在某个页面上时是否存在某个类。该类包含在名为凭证的表中。问题是此页面上有许多带有名称凭证的表格。:-(
通常要查找元素,我会执行以下操作:
assert @browser.image(:class, "class1").exists?
但由于这包含在凭证表的 1 中,这意味着它无法找到该元素。我需要一种方法来识别元素所在的表。
考虑到有多个同名的表,我该怎么做?
(顺便说一句 - 我打算在不同的表上获得唯一的名称,但我需要先解决这个问题!)