Sha256: 09c6f4e215e45a2320dc51f36102f5869a461876aa10f9ae20f4e679efaea1f9

Contents?: true

Size: 1.17 KB

Versions: 4

Compression:

Stored size: 1.17 KB

Contents

require "watirspec_helper"

describe "TextFields" do

  before :each do
    browser.goto(WatirSpec.url_for("forms_with_input_elements.html"))
  end

  describe "with selectors" do
    it "returns the matching elements" do
      expect(browser.text_fields(name: "new_user_email").to_a).to eq [browser.text_field(name: "new_user_email")]
    end
  end

  describe "#length" do
    it "returns the number of text fields" do
      expect(browser.text_fields.length).to eq 17
    end
  end

  describe "#[]" do
    it "returns the text field at the given index" do
      expect(browser.text_fields[0].id).to eq "new_user_first_name"
      expect(browser.text_fields[1].id).to eq "new_user_last_name"
      expect(browser.text_fields[2].id).to eq "new_user_email"
    end
  end

  describe "#each" do
    it "iterates through text fields correctly" do
      count = 0

      browser.text_fields.each_with_index do |r, index|
        expect(r.name).to eq browser.text_field(index: index).name
        expect(r.id).to eq browser.text_field(index: index).id
        expect(r.value).to eq browser.text_field(index: index).value

        count += 1
      end

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
watir-6.11.0 spec/watirspec/elements/text_fields_spec.rb
watir-6.11.0.beta2 spec/watirspec/elements/text_fields_spec.rb
watir-6.11.0.beta1 spec/watirspec/elements/text_fields_spec.rb
watir-6.10.3 spec/watirspec/elements/text_fields_spec.rb