class PageObject::Elements::SelectList
Public Class Methods
new(element, platform)
click to toggle source
# File lib/page-object/elements/select_list.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/select_list.rb, line 21 def self.selenium_finders super + [:label] end
watir_finders()
click to toggle source
Calls superclass method
PageObject::Elements::Element::watir_finders
# File lib/page-object/elements/select_list.rb, line 17 def self.watir_finders super + [:text, :value, :label] end
Protected Instance Methods
child_xpath()
click to toggle source
# File lib/page-object/elements/select_list.rb, line 13 def child_xpath ".//child::option" end
include_platform_for(platform)
click to toggle source
Calls superclass method
PageObject::Elements::Element#include_platform_for
# File lib/page-object/elements/select_list.rb, line 25 def include_platform_for platform super if platform[:platform] == :watir_webdriver require 'page-object/platforms/watir_webdriver/select_list' self.class.send :include, PageObject::Platforms::WatirWebDriver::SelectList elsif platform[:platform] == :selenium_webdriver require 'page-object/platforms/selenium_webdriver/select_list' self.class.send :include, PageObject::Platforms::SeleniumWebDriver::SelectList else raise ArgumentError, "expect platform to be :watir_webdriver or :selenium_webdriver" end end