Method: PageMagic::Element#select_option

Defined in:
lib/page_magic/element.rb

#select_optionObject

calls method of the same name on the underlying Capybara element

Raises:



95
96
97
98
99
100
101
# File 'lib/page_magic/element.rb', line 95

EVENT_TYPES.each do |method|
  define_method method do |*args|
    raise NotSupportedException, EVENT_NOT_SUPPORTED_MSG % method unless browser_element.respond_to?(method)

    browser_element.send(method, *args)
  end
end