lib/page-object/elements/text_area.rb in page-object-0.4.4 vs lib/page-object/elements/text_area.rb in page-object-0.5.0
- old
+ new
@@ -1,6 +1,5 @@
-require 'mixology'
module PageObject
module Elements
class TextArea < Element
@@ -29,16 +28,16 @@
def include_platform_for platform
super
if platform[:platform] == :watir_webdriver
require 'page-object/platforms/watir_webdriver/text_area'
- self.mixin PageObject::Platforms::WatirWebDriver::TextArea
+ self.class.send :include, PageObject::Platforms::WatirWebDriver::TextArea
elsif platform[:platform] == :selenium_webdriver
require 'page-object/platforms/selenium_webdriver/text_area'
- self.mixin PageObject::Platforms::SeleniumWebDriver::TextArea
+ self.class.send :include, PageObject::Platforms::SeleniumWebDriver::TextArea
else
raise ArgumentError, "expect platform to be :watir_webdriver or :selenium_webdriver"
end
end
end
end
-end
\ No newline at end of file
+end