Sha256: 181bc166660f64f90b529f15a8093f024993576a8638461f97f917b858172f9a

Contents?: true

Size: 963 Bytes

Versions: 1

Compression:

Stored size: 963 Bytes

Contents

require 'mixology'

module PageObject
  module Elements
    class RadioButton < Element

      def initialize(element, platform)
        @element = element
        include_platform_for platform
      end

      protected
      
      def self.watir_finders
        super + [:value]
      end

      def self.selenium_finders
        super + [:value]
      end

      def include_platform_for platform
        super
        if platform[:platform] == :watir_webdriver
          require 'page-object/platforms/watir_webdriver/radio_button'
          self.mixin PageObject::Platforms::WatirWebDriver::RadioButton
        elsif platform[:platform] == :selenium_webdriver
          require 'page-object/platforms/selenium_webdriver/radio_button'
          self.mixin PageObject::Platforms::SeleniumWebDriver::RadioButton
        else
          raise ArgumentError, "expect platform to be :watir_webdriver or :selenium_webdriver"
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
page-object-0.4.4 lib/page-object/elements/radio_button.rb