This file is indexed.

/usr/lib/ruby/vendor_ruby/capybara/spec/session/first_spec.rb is in ruby-capybara 2.2.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
Capybara::SpecHelper.spec '#first' do
  before do
    @session.visit('/with_html')
  end

  it "should find the first element using the given locator" do
    @session.first('//h1').text.should == 'This is a test'
    @session.first("//input[@id='test_field']")[:value].should == 'monkey'
  end

  it "should return nil when nothing was found" do
    @session.first('//div[@id="nosuchthing"]').should be_nil
  end

  it "should accept an XPath instance" do
    @session.visit('/form')
    @xpath = XPath::HTML.fillable_field('First Name')
    @session.first(@xpath).value.should == 'John'
  end

  context "with css selectors" do
    it "should find the first element using the given selector" do
      @session.first(:css, 'h1').text.should == 'This is a test'
      @session.first(:css, "input[id='test_field']")[:value].should == 'monkey'
    end
  end

  context "with xpath selectors" do
    it "should find the first element using the given locator" do
      @session.first(:xpath, '//h1').text.should == 'This is a test'
      @session.first(:xpath, "//input[@id='test_field']")[:value].should == 'monkey'
    end
  end

  context "with css as default selector" do
    before { Capybara.default_selector = :css }
    it "should find the first element using the given locator" do
      @session.first('h1').text.should == 'This is a test'
      @session.first("input[id='test_field']")[:value].should == 'monkey'
    end
  end

  context "with visible filter" do
    it "should only find visible nodes when true" do
      @session.first(:css, "a#invisible", :visible => true).should be_nil
    end

    it "should find nodes regardless of whether they are invisible when false" do
      @session.first(:css, "a#invisible", :visible => false).should_not be_nil
      @session.first(:css, "a#visible", :visible => false).should_not be_nil
    end

    it "should find nodes regardless of whether they are invisible when :all" do
      @session.first(:css, "a#invisible", :visible => :all).should_not be_nil
      @session.first(:css, "a#visible", :visible => :all).should_not be_nil
    end

    it "should find only hidden nodes when :hidden" do
      @session.first(:css, "a#invisible", :visible => :hidden).should_not be_nil
      @session.first(:css, "a#visible", :visible => :hidden).should be_nil
    end

    it "should find only visible nodes when :visible" do
      @session.first(:css, "a#invisible", :visible => :visible).should be_nil
      @session.first(:css, "a#visible", :visible => :visible).should_not be_nil
    end

    it "should default to Capybara.ignore_hidden_elements" do
      Capybara.ignore_hidden_elements = true
      @session.first(:css, "a#invisible").should be_nil
      Capybara.ignore_hidden_elements = false
      @session.first(:css, "a#invisible").should_not be_nil
      @session.first(:css, "a").should_not be_nil
    end
  end

  context "within a scope" do
    before do
      @session.visit('/with_scope')
    end

    it "should find the first element using the given locator" do
      @session.within(:xpath, "//div[@id='for_bar']") do
        @session.first('.//form').should_not be_nil
      end
    end
  end
end