我有以下代码,它应该只让我从上次检查表时添加到表中的新事件。
events=@browser.table( :id =>'table_events').tbody.rows
....
some code
....
events_new=@browser.table( :id =>'table_events').tbody.rows
events=events_new - events # not working !!
我得到了休闲错误:
undefined method `-' for #<Watir::TableRowCollection:0x007fccb9ba2358> (NoMethodError)
我知道“-”谓词当然是错误的,但是有没有一种方法可以满足我的需要,或者我需要遍历所有 TableRowCollection 并手动查找新行?