lib/watir/locators/row/locator.rb in watir-6.9.1 vs lib/watir/locators/row/locator.rb in watir-6.10.0
- old
+ new
@@ -1,17 +1,15 @@
module Watir
module Locators
class Row
class Locator < Element::Locator
- def locate_all
- find_all_by_multiple
- end
private
- def by_id
- nil # avoid this
+ def using_selenium(*)
+ # force Watir usage
end
+
end
end
end
end