私は 3 つの Textviews を持っています。2 つの Textviews のデータの違いを 3 つ目の Textviews と比較したいと思います。以下のコードを使用していますが、うまくいきません。これを解決するのを手伝ってください。
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