Sha256: ee8943a4962b6c8e149b880ece5d70b5e0143ce4a30243c59c970e6aac7f7190

Contents?: true

Size: 1.29 KB

Versions: 3

Compression:

Stored size: 1.29 KB

Contents

# frozen_string_literal: true

require 'watirspec_helper'

module Watir
  describe DateTimeFieldCollection do
    before do
      browser.goto(WatirSpec.url_for('forms_with_input_elements.html'))
    end

    describe 'with selectors' do
      it 'returns the matching elements' do
        list = [browser.date_time_field(name: 'html5_datetime-local')]
        expect(browser.date_time_fields(name: 'html5_datetime-local').to_a).to eq list
      end
    end

    describe '#length' do
      it 'returns the number of date_time_fields' do
        expect(browser.date_time_fields.length).to eq 1
      end
    end

    describe '#[]' do
      it 'returns the date_time_field at the given index' do
        expect(browser.date_time_fields[0].id).to eq 'html5_datetime-local'
      end
    end

    describe '#each' do
      it 'iterates through date_time_fields correctly' do
        count = 0

        browser.date_time_fields.each_with_index do |c, index|
          expect(c).to be_instance_of(DateTimeField)
          expect(c.name).to eq browser.date_time_field(index: index).name
          expect(c.id).to eq browser.date_time_field(index: index).id
          expect(c.value).to eq browser.date_time_field(index: index).value

          count += 1
        end

        expect(count).to be > 0
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
watir-7.3.0 spec/watirspec/elements/date_time_fields_spec.rb
watir-7.2.2 spec/watirspec/elements/date_time_fields_spec.rb
watir-7.2.1 spec/watirspec/elements/date_time_fields_spec.rb