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.
我正在使用 Capybara 在一个网站上进行一些测试,该网站上有一个包含可变数据量并由谷歌可视化生成的表格。该表没有 ID 值,我被告知无法在其中放入 ID 字段。
有没有其他方法可以找到一个表,然后能够在 capybara/ruby 中拉入并查看表中的数据?我知道表中应该包含哪些数据,并想检查它是否显示了正确的结果。
谢谢
您可以使用 xpath:
find(:xpath, "//table/tr")
或标准查找器,如 jQuery:
find("table")
旁注,记住你可以链接find调用。
find
既然你有一堂课,那就用它吧!
find(".class_name") find(".google-visualization-table-table")