Sha256: 5b4ca739858a7e5747a2a0ed930e419763f498de2d6093c49c1b615949889a9d

Contents?: true

Size: 1.36 KB

Versions: 1

Compression:

Stored size: 1.36 KB

Contents

module Formulaic
  module Inputs
    class StringInput < Input
      def fill
        if page.has_selector?(:fillable_field, label.to_str, wait: Formulaic.default_wait_time)
          fill_in(label.to_str, with: value)
        elsif page.has_selector?(:radio_button, label.to_str, wait: Formulaic.default_wait_time)
          choose(value)
        elsif has_option_in_select?(translate_option(value), label.to_str)
          select(translate_option(value), from: label.to_str)
        else
          raise Formulaic::InputNotFound.new(%[Unable to find input "#{label}".])
        end
      end

      def has_option_in_select?(option, select)
        element = find(:select, select.to_str)
        if ! element.has_selector?(:option, option, wait: Formulaic.default_wait_time)
          raise Formulaic::OptionForSelectInputNotFound.new(%[Unable to find option with text matching "#{option}".])
        end
        true
      rescue Capybara::ElementNotFound
        false
      end

      private

      def translate_option(option)
        I18n.t(lookup_paths_for_option.first,
               scope: :'simple_form.options', default: lookup_paths_for_option)
      end

      def lookup_paths_for_option
        [
          :"#{label.model_name}.#{label.attribute}.#{value}",
          :"defaults.#{label.attribute}.#{value}",
          value.to_s,
        ]
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
formulaic-0.4.1 lib/formulaic/inputs/string_input.rb