我正在使用site_prism在水豚中实现页面对象模型。它看起来很有趣。
如何指定选择器,例如“[data-id='x']”,其中 x 是整数?像这样的东西:
class Home < SitePrism::Page
set_url "http://www.example.com"
element :row, "[data-id='@id']"
end
然后在我的测试中:
Then /^the home page should contain a row$/ do
@home.should have_row 1234
end