class PageObject::Elements::Label
Public Class Methods
new(element, platform)
click to toggle source
# File lib/page-object/elements/label.rb, line 5 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/label.rb, line 16 def self.selenium_finders super + [:text] end
watir_finders()
click to toggle source
Calls superclass method
PageObject::Elements::Element::watir_finders
# File lib/page-object/elements/label.rb, line 12 def self.watir_finders super + [:text] 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/label.rb, line 20 def include_platform_for platform super if platform[:platform] == :watir_webdriver require 'page-object/platforms/watir_webdriver/label' self.class.send :include, PageObject::Platforms::WatirWebDriver::Label elsif platform[:platform] == :selenium_webdriver require 'page-object/platforms/selenium_webdriver/radio_button' self.class.send :include, PageObject::Platforms::SeleniumWebDriver::Label else raise ArgumentError, "expect platform to be :watir_webdriver or :selenium_webdriver" end end