Sha256: c3a47e7add88d070c145fdb6f76da0cb74616ec5b1c10ec2e4b50dc2ac82e30a

Contents?: true

Size: 989 Bytes

Versions: 2

Compression:

Stored size: 989 Bytes

Contents

# encoding: utf-8
require File.expand_path('spec_helper', File.dirname(__FILE__))

describe "Ps" do

  before :each do
    browser.goto(WatirSpec.files + "/non_control_elements.html")
  end

  bug "http://github.com/jarib/celerity/issues#issue/25", :celerity do
    describe "with selectors" do
      it "returns the matching elements" do
        browser.ps(:class => "lead").to_a.should == [browser.p(:class => "lead")]
      end
    end
  end
  
  describe "#length" do
    it "returns the number of ps" do
      browser.ps.length.should == 5
    end
  end

  describe "#[]" do
    it "returns the p at the given index" do
      browser.ps[0].id.should == "lead"
    end
  end

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

      browser.ps.each_with_index do |p, index|
        p.id.should == browser.p(:index, index).id
        p.value.should == browser.p(:index, index).value

        count += 1
      end

      count.should > 0
    end
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
watir-webdriver-0.1.1 spec/watirspec/ps_spec.rb
watir-webdriver-0.1.0 spec/watirspec/ps_spec.rb