class PageObject::Elements::RadioButton
Public Class Methods
new(element, platform)
click to toggle source
# File lib/page-object/elements/radio_button.rb, line 6 def initialize(element, platform) @element = element include_platform_for platform end
Protected Class Methods
selenium_finders()
click to toggle source
Calls superclass method
PageObject::Elements::Element::selenium_finders
# File lib/page-object/elements/radio_button.rb, line 17 def self.selenium_finders super + [:value, :label] end
watir_finders()
click to toggle source
Calls superclass method
PageObject::Elements::Element::watir_finders
# File lib/page-object/elements/radio_button.rb, line 13 def self.watir_finders super + [:value, :label] end
Protected Instance Methods
include_platform_for(platform)
click to toggle source
Calls superclass method
PageObject::Elements::Element#include_platform_for
# File lib/page-object/elements/radio_button.rb, line 21 def include_platform_for platform super if platform[:platform] == :watir_webdriver require 'page-object/platforms/watir_webdriver/radio_button' self.class.send :include, PageObject::Platforms::WatirWebDriver::RadioButton elsif platform[:platform] == :selenium_webdriver require 'page-object/platforms/selenium_webdriver/radio_button' self.class.send :include, PageObject::Platforms::SeleniumWebDriver::RadioButton else raise ArgumentError, "expect platform to be :watir_webdriver or :selenium_webdriver" end end