forked from watir/watirspec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hns_spec.rb
41 lines (36 loc) · 1.1 KB
/
hns_spec.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# encoding: utf-8
require File.expand_path("../spec_helper", __FILE__)
describe "H1s", "H2s", "H3s", "H4s", "H5s", "H6s" do
before :each do
browser.goto(WatirSpec.url_for("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
expect(browser.h1s(class: "primary").to_a).to eq [browser.h1(class: "primary")]
end
end
end
describe "#length" do
it "returns the number of h1s" do
expect(browser.h2s.length).to eq 9
end
end
describe "#[]" do
it "returns the h1 at the given index" do
expect(browser.h1s[0].id).to eq "first_header"
end
end
describe "#each" do
it "iterates through header collections correctly" do
lengths = (1..6).collect do |i|
collection = browser.send(:"h#{i}s")
collection.each_with_index do |h, index|
expect(h.id).to eq browser.send(:"h#{i}", :index, index).id
end
collection.length
end
expect(lengths).to eq [2, 9, 2, 1, 1, 2]
end
end
end