Sha256: 4685821680341a2e78d9976d29c20a8181d2c20ff91d02d08528dac33dceba28

Contents?: true

Size: 1.59 KB

Versions: 12

Compression:

Stored size: 1.59 KB

Contents

require "webrat/core_extensions/detect_mapped"
require "webrat/core/locators/locator"

module Webrat
  module Locators

    class SelectOptionLocator < Locator # :nodoc:

      def initialize(session, dom, option_text, id_or_name_or_label)
        @session = session
        @dom = dom
        @option_text = option_text
        @id_or_name_or_label = id_or_name_or_label
      end

      def locate
        if @id_or_name_or_label
          field = FieldLocator.new(@session, @dom, @id_or_name_or_label, SelectField, MultipleSelectField).locate!

          field.options.detect do |o|
            if @option_text.is_a?(Regexp)
              o.element.inner_text =~ @option_text
            else
              o.inner_text == @option_text.to_s
            end
          end
        else
          option_element = option_elements.detect do |o|
            if @option_text.is_a?(Regexp)
              o.inner_text =~ @option_text
            else
              o.inner_text == @option_text.to_s
            end
          end

          SelectOption.load(@session, option_element)
        end
      end

      def option_elements
        @dom.xpath(*SelectOption.xpath_search)
      end

      def error_message
        if @id_or_name_or_label
          "The '#{@option_text}' option was not found in the #{@id_or_name_or_label.inspect} select box"
        else
          "Could not find option #{@option_text.inspect}"
        end
      end

    end

    def select_option(option_text, id_or_name_or_label = nil) #:nodoc:
      SelectOptionLocator.new(@session, dom, option_text, id_or_name_or_label).locate!
    end

  end
end

Version data entries

12 entries across 12 versions & 7 rubygems

Version Path
radiant-1.0.0 ruby-debug/ruby/1.8/gems/webrat-0.7.3/lib/webrat/core/locators/select_option_locator.rb
indirect-webrat-0.7.5 lib/webrat/core/locators/select_option_locator.rb
indirect-webrat-0.7.4 lib/webrat/core/locators/select_option_locator.rb
webrat-0.7.3 lib/webrat/core/locators/select_option_locator.rb
jbd-webrat-0.7.2.rails3 lib/webrat/core/locators/select_option_locator.rb
webrat-0.7.2 lib/webrat/core/locators/select_option_locator.rb
webrat-0.7.2.beta.2 lib/webrat/core/locators/select_option_locator.rb
mutle-webrat-0.7.2.beta.1 lib/webrat/core/locators/select_option_locator.rb
thoughtbot-webrat-0.7.2.pre lib/webrat/core/locators/select_option_locator.rb
webrat-0.7.2.beta.1 lib/webrat/core/locators/select_option_locator.rb
honkster-webrat-0.7.1.2 lib/webrat/core/locators/select_option_locator.rb
honkster-webrat-0.7.1.1 lib/webrat/core/locators/select_option_locator.rb