我正在尝试使用以下代码验证表单:
然后我应该看到以下字段:|新客户||姓名||年龄||地址||电子邮件|
我累了:
Then /^I should see the following activities:$/ do |fields|
@data = query("TextView","text")
expected_activities.diff! @data
end
和
Then /^I should see the following activities:$/ do |expected|
@data = query("TextView","text")
for i in 0..expected.count-1
if (expected[i] != @data[i])
assert false
end
end
end
谢谢。