lib/symbiont/web_objects/table_cell.rb in symbiont-0.1.8 vs lib/symbiont/web_objects/table_cell.rb in symbiont-0.1.9
- old
+ new
@@ -1,22 +1,18 @@
module Symbiont
module WebObjects
class TableCell < WebObject
- def initialize(web_object, platform)
+ def initialize(web_object)
@web_object = web_object
end
def enabled?
true
end
- def self.usable_selectors_for_watir
- super + [:text]
- end
-
- def self.usable_selectors_for_selenium
+ def self.usable_selectors
super + [:text]
end
end # class: TableCell