Sha256: b9e65cadb5343be7879922bae9f0cfc0bd143da465b7c806e293708a75f26ea1

Contents?: true

Size: 967 Bytes

Versions: 4

Compression:

Stored size: 967 Bytes

Contents

# frozen_string_literal: true

module Watir
  class FileField < Input
    #
    # Set the file field to the given path
    #
    # @param [String] path
    # @raise [Errno::ENOENT] if the file doesn't exist
    #

    def set(path)
      raise Errno::ENOENT, path unless File.exist?(path)

      self.value = path
    end
    alias upload set

    #
    # Sets the file field to the given path
    #
    # @param [String] path
    #

    def value=(path)
      path = path.gsub(File::SEPARATOR, File::ALT_SEPARATOR) if File::ALT_SEPARATOR
      element_call { @element.send_keys path }
    end
  end # FileField

  module Container
    def file_field(opts = {})
      FileField.new(self, opts.merge(tag_name: 'input', type: 'file'))
    end

    def file_fields(opts = {})
      FileFieldCollection.new(self, opts.merge(tag_name: 'input', type: 'file'))
    end
  end # Container

  class FileFieldCollection < InputCollection
  end # FileFieldCollection
end # Watir

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
watir-7.3.0 lib/watir/elements/file_field.rb
watir-7.2.2 lib/watir/elements/file_field.rb
watir-7.2.1 lib/watir/elements/file_field.rb
watir-7.2.0 lib/watir/elements/file_field.rb