我有三个 Textview,我想比较两个 Textview 的数据与第三个的差异。我正在使用下面的代码,但它对我不起作用。请帮我解决这个问题。
Then /^I checked "([^\"]*)" transactions count with first TextView "([^\"]*)" second TextView "([^\"]*)"$/ do |nid,rid,vid|
totalReceivedCount=query("TextView id:'#{rid}'", :text).first.to_i
totalReturnedCount=query("TextView iid:'#{vid}'", :text).first.to_i
totalSummaryCount=query("TextView id:'#{nid}'", :text).first.to_i
unless totalSummaryTransactionCount == totalReceivedCount - totalReturnedCount
fail "Total not equal"
end
end