capybara 3.3.1 → 3.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (159) hide show
  1. checksums.yaml +4 -4
  2. data/History.md +16 -0
  3. data/README.md +5 -7
  4. data/lib/capybara.rb +7 -6
  5. data/lib/capybara/config.rb +1 -1
  6. data/lib/capybara/dsl.rb +2 -2
  7. data/lib/capybara/helpers.rb +3 -3
  8. data/lib/capybara/minitest/spec.rb +3 -3
  9. data/lib/capybara/node/actions.rb +18 -18
  10. data/lib/capybara/node/base.rb +1 -1
  11. data/lib/capybara/node/element.rb +2 -2
  12. data/lib/capybara/node/finders.rb +6 -6
  13. data/lib/capybara/node/matchers.rb +5 -5
  14. data/lib/capybara/node/simple.rb +2 -2
  15. data/lib/capybara/queries/ancestor_query.rb +1 -1
  16. data/lib/capybara/queries/base_query.rb +12 -11
  17. data/lib/capybara/queries/current_path_query.rb +1 -1
  18. data/lib/capybara/queries/selector_query.rb +39 -15
  19. data/lib/capybara/queries/sibling_query.rb +1 -1
  20. data/lib/capybara/queries/text_query.rb +1 -1
  21. data/lib/capybara/rack_test/browser.rb +7 -7
  22. data/lib/capybara/rack_test/driver.rb +1 -1
  23. data/lib/capybara/rack_test/form.rb +7 -7
  24. data/lib/capybara/rack_test/node.rb +16 -16
  25. data/lib/capybara/rails.rb +1 -1
  26. data/lib/capybara/result.rb +8 -4
  27. data/lib/capybara/rspec/features.rb +4 -4
  28. data/lib/capybara/rspec/matchers.rb +6 -6
  29. data/lib/capybara/selector.rb +106 -90
  30. data/lib/capybara/selector/css.rb +4 -4
  31. data/lib/capybara/selector/filter_set.rb +52 -8
  32. data/lib/capybara/selector/selector.rb +39 -15
  33. data/lib/capybara/selenium/driver.rb +10 -10
  34. data/lib/capybara/selenium/driver_specializations/chrome_driver.rb +8 -0
  35. data/lib/capybara/selenium/node.rb +9 -10
  36. data/lib/capybara/selenium/nodes/chrome_node.rb +18 -0
  37. data/lib/capybara/selenium/nodes/marionette_node.rb +32 -7
  38. data/lib/capybara/server.rb +3 -3
  39. data/lib/capybara/server/animation_disabler.rb +1 -1
  40. data/lib/capybara/server/middleware.rb +1 -1
  41. data/lib/capybara/session.rb +23 -19
  42. data/lib/capybara/session/config.rb +18 -3
  43. data/lib/capybara/spec/public/test.js +1 -1
  44. data/lib/capybara/spec/session/accept_alert_spec.rb +10 -10
  45. data/lib/capybara/spec/session/accept_confirm_spec.rb +3 -3
  46. data/lib/capybara/spec/session/accept_prompt_spec.rb +9 -10
  47. data/lib/capybara/spec/session/all_spec.rb +33 -32
  48. data/lib/capybara/spec/session/ancestor_spec.rb +19 -19
  49. data/lib/capybara/spec/session/assert_all_of_selectors_spec.rb +38 -38
  50. data/lib/capybara/spec/session/assert_current_path_spec.rb +16 -16
  51. data/lib/capybara/spec/session/assert_selector_spec.rb +53 -53
  52. data/lib/capybara/spec/session/assert_style_spec.rb +3 -3
  53. data/lib/capybara/spec/session/assert_text_spec.rb +31 -30
  54. data/lib/capybara/spec/session/assert_title_spec.rb +12 -12
  55. data/lib/capybara/spec/session/attach_file_spec.rb +51 -52
  56. data/lib/capybara/spec/session/body_spec.rb +6 -6
  57. data/lib/capybara/spec/session/check_spec.rb +52 -47
  58. data/lib/capybara/spec/session/choose_spec.rb +32 -32
  59. data/lib/capybara/spec/session/click_button_spec.rb +103 -103
  60. data/lib/capybara/spec/session/click_link_or_button_spec.rb +24 -23
  61. data/lib/capybara/spec/session/click_link_spec.rb +49 -48
  62. data/lib/capybara/spec/session/current_scope_spec.rb +7 -7
  63. data/lib/capybara/spec/session/current_url_spec.rb +26 -27
  64. data/lib/capybara/spec/session/dismiss_confirm_spec.rb +3 -3
  65. data/lib/capybara/spec/session/dismiss_prompt_spec.rb +2 -2
  66. data/lib/capybara/spec/session/element/assert_match_selector_spec.rb +8 -8
  67. data/lib/capybara/spec/session/element/match_css_spec.rb +10 -10
  68. data/lib/capybara/spec/session/element/match_xpath_spec.rb +6 -6
  69. data/lib/capybara/spec/session/element/matches_selector_spec.rb +51 -51
  70. data/lib/capybara/spec/session/evaluate_async_script_spec.rb +7 -7
  71. data/lib/capybara/spec/session/evaluate_script_spec.rb +15 -8
  72. data/lib/capybara/spec/session/execute_script_spec.rb +7 -7
  73. data/lib/capybara/spec/session/fill_in_spec.rb +43 -42
  74. data/lib/capybara/spec/session/find_button_spec.rb +23 -23
  75. data/lib/capybara/spec/session/find_by_id_spec.rb +7 -7
  76. data/lib/capybara/spec/session/find_field_spec.rb +32 -30
  77. data/lib/capybara/spec/session/find_link_spec.rb +21 -21
  78. data/lib/capybara/spec/session/find_spec.rb +153 -135
  79. data/lib/capybara/spec/session/first_spec.rb +41 -41
  80. data/lib/capybara/spec/session/frame/frame_title_spec.rb +5 -5
  81. data/lib/capybara/spec/session/frame/frame_url_spec.rb +5 -5
  82. data/lib/capybara/spec/session/frame/switch_to_frame_spec.rb +17 -17
  83. data/lib/capybara/spec/session/frame/within_frame_spec.rb +31 -17
  84. data/lib/capybara/spec/session/go_back_spec.rb +1 -1
  85. data/lib/capybara/spec/session/go_forward_spec.rb +1 -1
  86. data/lib/capybara/spec/session/has_all_selectors_spec.rb +17 -17
  87. data/lib/capybara/spec/session/has_button_spec.rb +13 -13
  88. data/lib/capybara/spec/session/has_css_spec.rb +133 -131
  89. data/lib/capybara/spec/session/has_current_path_spec.rb +29 -29
  90. data/lib/capybara/spec/session/has_field_spec.rb +58 -58
  91. data/lib/capybara/spec/session/has_link_spec.rb +4 -4
  92. data/lib/capybara/spec/session/has_none_selectors_spec.rb +24 -24
  93. data/lib/capybara/spec/session/has_select_spec.rb +43 -43
  94. data/lib/capybara/spec/session/has_selector_spec.rb +71 -71
  95. data/lib/capybara/spec/session/has_style_spec.rb +3 -3
  96. data/lib/capybara/spec/session/has_table_spec.rb +4 -4
  97. data/lib/capybara/spec/session/has_text_spec.rb +53 -52
  98. data/lib/capybara/spec/session/has_title_spec.rb +14 -14
  99. data/lib/capybara/spec/session/has_xpath_spec.rb +39 -38
  100. data/lib/capybara/spec/session/headers_spec.rb +1 -1
  101. data/lib/capybara/spec/session/html_spec.rb +6 -6
  102. data/lib/capybara/spec/session/node_spec.rb +129 -123
  103. data/lib/capybara/spec/session/node_wrapper_spec.rb +10 -7
  104. data/lib/capybara/spec/session/refresh_spec.rb +4 -7
  105. data/lib/capybara/spec/session/reset_session_spec.rb +28 -28
  106. data/lib/capybara/spec/session/response_code_spec.rb +1 -1
  107. data/lib/capybara/spec/session/save_and_open_page_spec.rb +2 -2
  108. data/lib/capybara/spec/session/save_page_spec.rb +37 -37
  109. data/lib/capybara/spec/session/save_screenshot_spec.rb +6 -6
  110. data/lib/capybara/spec/session/screenshot_spec.rb +2 -2
  111. data/lib/capybara/spec/session/select_spec.rb +81 -81
  112. data/lib/capybara/spec/session/selectors_spec.rb +17 -17
  113. data/lib/capybara/spec/session/sibling_spec.rb +9 -9
  114. data/lib/capybara/spec/session/text_spec.rb +23 -23
  115. data/lib/capybara/spec/session/title_spec.rb +5 -5
  116. data/lib/capybara/spec/session/uncheck_spec.rb +24 -20
  117. data/lib/capybara/spec/session/unselect_spec.rb +37 -37
  118. data/lib/capybara/spec/session/visit_spec.rb +48 -49
  119. data/lib/capybara/spec/session/window/current_window_spec.rb +1 -1
  120. data/lib/capybara/spec/session/window/switch_to_window_spec.rb +16 -16
  121. data/lib/capybara/spec/session/window/window_opened_by_spec.rb +2 -2
  122. data/lib/capybara/spec/session/window/window_spec.rb +4 -4
  123. data/lib/capybara/spec/session/window/within_window_spec.rb +14 -14
  124. data/lib/capybara/spec/session/within_spec.rb +41 -41
  125. data/lib/capybara/spec/spec_helper.rb +11 -9
  126. data/lib/capybara/spec/test_app.rb +18 -17
  127. data/lib/capybara/spec/views/form.erb +29 -31
  128. data/lib/capybara/spec/views/with_html.erb +2 -2
  129. data/lib/capybara/version.rb +1 -1
  130. data/spec/basic_node_spec.rb +23 -23
  131. data/spec/capybara_spec.rb +20 -20
  132. data/spec/css_splitter_spec.rb +7 -7
  133. data/spec/dsl_spec.rb +37 -32
  134. data/spec/filter_set_spec.rb +4 -4
  135. data/spec/fixtures/selenium_driver_rspec_failure.rb +1 -1
  136. data/spec/fixtures/selenium_driver_rspec_success.rb +1 -1
  137. data/spec/minitest_spec.rb +4 -4
  138. data/spec/minitest_spec_spec.rb +23 -23
  139. data/spec/per_session_config_spec.rb +5 -5
  140. data/spec/rack_test_spec.rb +44 -44
  141. data/spec/result_spec.rb +14 -14
  142. data/spec/rspec/features_spec.rb +13 -13
  143. data/spec/rspec/scenarios_spec.rb +4 -4
  144. data/spec/rspec/shared_spec_matchers.rb +282 -281
  145. data/spec/rspec/views_spec.rb +3 -3
  146. data/spec/rspec_matchers_spec.rb +10 -10
  147. data/spec/rspec_spec.rb +29 -29
  148. data/spec/selector_spec.rb +64 -64
  149. data/spec/selenium_spec_chrome.rb +14 -22
  150. data/spec/selenium_spec_chrome_remote.rb +28 -8
  151. data/spec/selenium_spec_edge.rb +9 -4
  152. data/spec/selenium_spec_firefox_remote.rb +87 -0
  153. data/spec/selenium_spec_ie.rb +9 -4
  154. data/spec/selenium_spec_marionette.rb +42 -18
  155. data/spec/server_spec.rb +29 -27
  156. data/spec/session_spec.rb +17 -17
  157. data/spec/shared_selenium_session.rb +70 -52
  158. data/spec/spec_helper.rb +1 -1
  159. metadata +4 -2
@@ -1,69 +1,70 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  Capybara::SpecHelper.spec '#click_link_or_button' do
4
- it "should click on a link" do
4
+ it 'should click on a link' do
5
5
  @session.visit('/with_html')
6
6
  @session.click_link_or_button('labore')
7
7
  expect(@session).to have_content('Bar')
8
8
  end
9
9
 
10
- it "should click on a button" do
10
+ it 'should click on a button' do
11
11
  @session.visit('/form')
12
12
  @session.click_link_or_button('awe123')
13
13
  expect(extract_results(@session)['first_name']).to eq('John')
14
14
  end
15
15
 
16
- it "should click on a button with no type attribute" do
16
+ it 'should click on a button with no type attribute' do
17
17
  @session.visit('/form')
18
18
  @session.click_link_or_button('no_type')
19
19
  expect(extract_results(@session)['first_name']).to eq('John')
20
20
  end
21
21
 
22
- it "should be aliased as click_on" do
22
+ it 'should be aliased as click_on' do
23
23
  @session.visit('/form')
24
24
  @session.click_on('awe123')
25
25
  expect(extract_results(@session)['first_name']).to eq('John')
26
26
  end
27
27
 
28
- it "should wait for asynchronous load", requires: [:js] do
28
+ it 'should wait for asynchronous load', requires: [:js] do
29
+ Capybara.default_max_wait_time = 2
29
30
  @session.visit('/with_js')
30
31
  @session.click_link('Click me')
31
32
  @session.click_link_or_button('Has been clicked')
32
33
  end
33
34
 
34
- it "casts to string" do
35
+ it 'casts to string' do
35
36
  @session.visit('/form')
36
37
  @session.click_link_or_button(:awe123)
37
38
  expect(extract_results(@session)['first_name']).to eq('John')
38
39
  end
39
40
 
40
- context "with :exact option" do
41
- context "when `false`" do
42
- it "clicks on approximately matching link" do
41
+ context 'with :exact option' do
42
+ context 'when `false`' do
43
+ it 'clicks on approximately matching link' do
43
44
  @session.visit('/with_html')
44
45
  @session.click_link_or_button('abore', exact: false)
45
46
  expect(@session).to have_content('Bar')
46
47
  end
47
48
 
48
- it "clicks on approximately matching button" do
49
+ it 'clicks on approximately matching button' do
49
50
  @session.visit('/form')
50
51
  @session.click_link_or_button('awe', exact: false)
51
52
  expect(extract_results(@session)['first_name']).to eq('John')
52
53
  end
53
54
  end
54
55
 
55
- context "when `true`" do
56
- it "does not click on link which matches approximately" do
56
+ context 'when `true`' do
57
+ it 'does not click on link which matches approximately' do
57
58
  @session.visit('/with_html')
58
- msg = "Unable to find visible link or button \"abore\""
59
+ msg = 'Unable to find link or button "abore"'
59
60
  expect do
60
61
  @session.click_link_or_button('abore', exact: true)
61
62
  end.to raise_error(Capybara::ElementNotFound, msg)
62
63
  end
63
64
 
64
- it "does not click on approximately matching button" do
65
+ it 'does not click on approximately matching button' do
65
66
  @session.visit('/form')
66
- msg = "Unable to find visible link or button \"awe\""
67
+ msg = 'Unable to find link or button "awe"'
67
68
 
68
69
  expect do
69
70
  @session.click_link_or_button('awe', exact: true)
@@ -73,38 +74,38 @@ Capybara::SpecHelper.spec '#click_link_or_button' do
73
74
  end
74
75
 
75
76
  context "with a locator that doesn't exist" do
76
- it "should raise an error" do
77
+ it 'should raise an error' do
77
78
  @session.visit('/with_html')
78
- msg = "Unable to find visible link or button \"does not exist\""
79
+ msg = 'Unable to find link or button "does not exist"'
79
80
  expect do
80
81
  @session.click_link_or_button('does not exist')
81
82
  end.to raise_error(Capybara::ElementNotFound, msg)
82
83
  end
83
84
  end
84
85
 
85
- context "with :disabled option" do
86
- it "ignores disabled buttons when false" do
86
+ context 'with :disabled option' do
87
+ it 'ignores disabled buttons when false' do
87
88
  @session.visit('/form')
88
89
  expect do
89
90
  @session.click_link_or_button('Disabled button', disabled: false)
90
91
  end.to raise_error(Capybara::ElementNotFound)
91
92
  end
92
93
 
93
- it "ignores disabled buttons by default" do
94
+ it 'ignores disabled buttons by default' do
94
95
  @session.visit('/form')
95
96
  expect do
96
97
  @session.click_link_or_button('Disabled button')
97
98
  end.to raise_error(Capybara::ElementNotFound)
98
99
  end
99
100
 
100
- it "happily clicks on links which incorrectly have the disabled attribute" do
101
+ it 'happily clicks on links which incorrectly have the disabled attribute' do
101
102
  @session.visit('/with_html')
102
103
  @session.click_link_or_button('Disabled link')
103
- expect(@session).to have_content("Bar")
104
+ expect(@session).to have_content('Bar')
104
105
  end
105
106
  end
106
107
 
107
- it "should return the element clicked" do
108
+ it 'should return the element clicked' do
108
109
  @session.visit('/with_html')
109
110
  link = @session.find(:link, 'Blank Anchor')
110
111
  expect(@session.click_link_or_button('Blank Anchor')).to eq link
@@ -5,78 +5,79 @@ Capybara::SpecHelper.spec '#click_link' do
5
5
  @session.visit('/with_html')
6
6
  end
7
7
 
8
- it "should wait for asynchronous load", requires: [:js] do
8
+ it 'should wait for asynchronous load', requires: [:js] do
9
+ Capybara.default_max_wait_time = 2
9
10
  @session.visit('/with_js')
10
11
  @session.click_link('Click me')
11
12
  @session.click_link('Has been clicked')
12
13
  end
13
14
 
14
- it "casts to string" do
15
+ it 'casts to string' do
15
16
  @session.click_link(:foo)
16
17
  expect(@session).to have_content('Another World')
17
18
  end
18
19
 
19
- it "raises any errors caught inside the server", requires: [:server] do
20
- quietly { @session.visit("/error") }
20
+ it 'raises any errors caught inside the server', requires: [:server] do
21
+ quietly { @session.visit('/error') }
21
22
  expect do
22
23
  @session.click_link('foo')
23
24
  end.to raise_error(TestApp::TestAppError)
24
25
  end
25
26
 
26
- context "with id given" do
27
- it "should take user to the linked page" do
27
+ context 'with id given' do
28
+ it 'should take user to the linked page' do
28
29
  @session.click_link('foo')
29
30
  expect(@session).to have_content('Another World')
30
31
  end
31
32
  end
32
33
 
33
- context "with text given" do
34
- it "should take user to the linked page" do
34
+ context 'with text given' do
35
+ it 'should take user to the linked page' do
35
36
  @session.click_link('labore')
36
37
  expect(@session).to have_content('Bar')
37
38
  end
38
39
 
39
- it "should accept partial matches", :exact_false do
40
+ it 'should accept partial matches', :exact_false do
40
41
  @session.click_link('abo')
41
42
  expect(@session).to have_content('Bar')
42
43
  end
43
44
  end
44
45
 
45
- context "with title given" do
46
- it "should take user to the linked page" do
46
+ context 'with title given' do
47
+ it 'should take user to the linked page' do
47
48
  @session.click_link('awesome title')
48
49
  expect(@session).to have_content('Bar')
49
50
  end
50
51
 
51
- it "should accept partial matches", :exact_false do
52
+ it 'should accept partial matches', :exact_false do
52
53
  @session.click_link('some titl')
53
54
  expect(@session).to have_content('Bar')
54
55
  end
55
56
  end
56
57
 
57
- context "with alternative text given to a contained image" do
58
- it "should take user to the linked page" do
58
+ context 'with alternative text given to a contained image' do
59
+ it 'should take user to the linked page' do
59
60
  @session.click_link('awesome image')
60
61
  expect(@session).to have_content('Bar')
61
62
  end
62
63
 
63
- it "should accept partial matches", :exact_false do
64
+ it 'should accept partial matches', :exact_false do
64
65
  @session.click_link('some imag')
65
66
  expect(@session).to have_content('Bar')
66
67
  end
67
68
  end
68
69
 
69
70
  context "with a locator that doesn't exist" do
70
- it "should raise an error" do
71
- msg = "Unable to find visible link \"does not exist\""
71
+ it 'should raise an error' do
72
+ msg = 'Unable to find link "does not exist"'
72
73
  expect do
73
74
  @session.click_link('does not exist')
74
75
  end.to raise_error(Capybara::ElementNotFound, msg)
75
76
  end
76
77
  end
77
78
 
78
- context "with :href option given" do
79
- it "should find links with valid href" do
79
+ context 'with :href option given' do
80
+ it 'should find links with valid href' do
80
81
  @session.click_link('labore', href: '/with_simple_html')
81
82
  expect(@session).to have_content('Bar')
82
83
  end
@@ -86,18 +87,18 @@ Capybara::SpecHelper.spec '#click_link' do
86
87
  end
87
88
  end
88
89
 
89
- context "with a regex :href option given" do
90
- it "should find a link matching an all-matching regex pattern" do
90
+ context 'with a regex :href option given' do
91
+ it 'should find a link matching an all-matching regex pattern' do
91
92
  @session.click_link('labore', href: /.+/)
92
93
  expect(@session).to have_content('Bar')
93
94
  end
94
95
 
95
- it "should find a link matching an exact regex pattern" do
96
+ it 'should find a link matching an exact regex pattern' do
96
97
  @session.click_link('labore', href: %r{/with_simple_html})
97
98
  expect(@session).to have_content('Bar')
98
99
  end
99
100
 
100
- it "should find a link matching a partial regex pattern" do
101
+ it 'should find a link matching a partial regex pattern' do
101
102
  @session.click_link('labore', href: %r{/with_simple})
102
103
  expect(@session).to have_content('Bar')
103
104
  end
@@ -108,103 +109,103 @@ Capybara::SpecHelper.spec '#click_link' do
108
109
  end
109
110
 
110
111
  context 'href: nil' do
111
- it "should not raise an error on links with no href attribute" do
112
+ it 'should not raise an error on links with no href attribute' do
112
113
  expect { @session.click_link('No Href', href: nil) }.not_to raise_error
113
114
  end
114
115
 
115
- it "should raise an error if href attribute exists" do
116
+ it 'should raise an error if href attribute exists' do
116
117
  expect { @session.click_link('Blank Href', href: nil) }.to raise_error(Capybara::ElementNotFound)
117
118
  expect { @session.click_link('Normal Anchor', href: nil) }.to raise_error(Capybara::ElementNotFound)
118
119
  end
119
120
  end
120
121
  end
121
122
 
122
- it "should follow relative links" do
123
+ it 'should follow relative links' do
123
124
  @session.visit('/')
124
125
  @session.click_link('Relative')
125
126
  expect(@session).to have_content('This is a test')
126
127
  end
127
128
 
128
- it "should follow protocol relative links" do
129
+ it 'should follow protocol relative links' do
129
130
  @session.click_link('Protocol')
130
131
  expect(@session).to have_content('Another World')
131
132
  end
132
133
 
133
- it "should follow redirects" do
134
+ it 'should follow redirects' do
134
135
  @session.click_link('Redirect')
135
136
  expect(@session).to have_content('You landed')
136
137
  end
137
138
 
138
- it "should follow redirects back to itself" do
139
+ it 'should follow redirects back to itself' do
139
140
  @session.click_link('BackToMyself')
140
141
  expect(@session).to have_css('#referrer', text: %r{/with_html$})
141
142
  expect(@session).to have_content('This is a test')
142
143
  end
143
144
 
144
- it "should add query string to current URL with naked query string" do
145
+ it 'should add query string to current URL with naked query string' do
145
146
  @session.click_link('Naked Query String')
146
147
  expect(@session).to have_content('Query String sent')
147
148
  end
148
149
 
149
- it "should do nothing on anchor links" do
150
- @session.fill_in("test_field", with: 'blah')
150
+ it 'should do nothing on anchor links' do
151
+ @session.fill_in('test_field', with: 'blah')
151
152
  @session.click_link('Normal Anchor')
152
- expect(@session.find_field("test_field").value).to eq('blah')
153
+ expect(@session.find_field('test_field').value).to eq('blah')
153
154
  @session.click_link('Blank Anchor')
154
- expect(@session.find_field("test_field").value).to eq('blah')
155
+ expect(@session.find_field('test_field').value).to eq('blah')
155
156
  @session.click_link('Blank JS Anchor')
156
- expect(@session.find_field("test_field").value).to eq('blah')
157
+ expect(@session.find_field('test_field').value).to eq('blah')
157
158
  end
158
159
 
159
- it "should do nothing on URL+anchor links for the same page" do
160
- @session.fill_in("test_field", with: 'blah')
160
+ it 'should do nothing on URL+anchor links for the same page' do
161
+ @session.fill_in('test_field', with: 'blah')
161
162
  @session.click_link('Anchor on same page')
162
- expect(@session.find_field("test_field").value).to eq('blah')
163
+ expect(@session.find_field('test_field').value).to eq('blah')
163
164
  end
164
165
 
165
- it "should follow link on URL+anchor links for a different page" do
166
+ it 'should follow link on URL+anchor links for a different page' do
166
167
  @session.click_link('Anchor on different page')
167
168
  expect(@session).to have_content('Bar')
168
169
  end
169
170
 
170
- it "should follow link on anchor if the path has regex special characters" do
171
+ it 'should follow link on anchor if the path has regex special characters' do
171
172
  @session.visit('/with.*html')
172
173
  @session.click_link('Anchor on different page')
173
174
  expect(@session).to have_content('Bar')
174
175
  end
175
176
 
176
- it "should raise an error with links with no href" do
177
+ it 'should raise an error with links with no href' do
177
178
  expect do
178
179
  @session.click_link('No Href')
179
180
  end.to raise_error(Capybara::ElementNotFound)
180
181
  end
181
182
 
182
- context "with :exact option" do
183
- it "should accept partial matches when false" do
183
+ context 'with :exact option' do
184
+ it 'should accept partial matches when false' do
184
185
  @session.click_link('abo', exact: false)
185
186
  expect(@session).to have_content('Bar')
186
187
  end
187
188
 
188
- it "should not accept partial matches when true" do
189
+ it 'should not accept partial matches when true' do
189
190
  expect do
190
191
  @session.click_link('abo', exact: true)
191
192
  end.to raise_error(Capybara::ElementNotFound)
192
193
  end
193
194
  end
194
195
 
195
- context "without locator" do
196
- it "uses options" do
196
+ context 'without locator' do
197
+ it 'uses options' do
197
198
  @session.click_link(href: '/foo')
198
199
  expect(@session).to have_content('Another World')
199
200
  end
200
201
  end
201
202
 
202
- it "should return element clicked" do
203
+ it 'should return element clicked' do
203
204
  el = @session.find(:link, 'Normal Anchor')
204
205
  expect(@session.click_link('Normal Anchor')).to eq el
205
206
  end
206
207
 
207
- it "can download a file", requires: [:download] do
208
+ it 'can download a file', requires: [:download] do
208
209
  # This requires the driver used for the test to be configured
209
210
  # to download documents with the mime type "text/csv"
210
211
  download_file = File.join(Capybara.save_path, 'download.csv')
@@ -5,22 +5,22 @@ Capybara::SpecHelper.spec '#current_scope' do
5
5
  @session.visit('/with_scope')
6
6
  end
7
7
 
8
- context "when not in a #within block" do
9
- it "should return the document" do
8
+ context 'when not in a #within block' do
9
+ it 'should return the document' do
10
10
  expect(@session.current_scope).to be_kind_of Capybara::Node::Document
11
11
  end
12
12
  end
13
13
 
14
- context "when in a #within block" do
15
- it "should return the element in scope" do
16
- @session.within(:css, "#simple_first_name") do
14
+ context 'when in a #within block' do
15
+ it 'should return the element in scope' do
16
+ @session.within(:css, '#simple_first_name') do
17
17
  expect(@session.current_scope[:name]).to eq 'first_name'
18
18
  end
19
19
  end
20
20
  end
21
21
 
22
- context "when in a nested #within block" do
23
- it "should return the element in scope" do
22
+ context 'when in a nested #within block' do
23
+ it 'should return the element in scope' do
24
24
  @session.within("//div[@id='for_bar']") do
25
25
  @session.within(".//input[@value='Peter']") do
26
26
  expect(@session.current_scope[:name]).to eq 'form[first_name]'
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "capybara/spec/test_app"
3
+ require 'capybara/spec/test_app'
4
4
 
5
5
  Capybara::SpecHelper.spec '#current_url, #current_path, #current_host' do
6
6
  before :all do # rubocop:disable RSpec/BeforeAfterAll
@@ -14,7 +14,7 @@ Capybara::SpecHelper.spec '#current_url, #current_path, #current_host' do
14
14
  @servers.map { |s| "http://#{s.host}:#{s.port}" }
15
15
  end
16
16
 
17
- def should_be_on(server_index, path = "/host", scheme = "http")
17
+ def should_be_on(server_index, path = '/host', scheme = 'http')
18
18
  # Check that we are on /host on the given server
19
19
  s = @servers[server_index]
20
20
 
@@ -31,12 +31,12 @@ Capybara::SpecHelper.spec '#current_url, #current_path, #current_host' do
31
31
  @session.visit("#{bases[0]}/host_links?absolute_host=#{bases[1]}")
32
32
  end
33
33
 
34
- it "is affected by visiting a page directly" do
34
+ it 'is affected by visiting a page directly' do
35
35
  @session.visit("#{bases[0]}/host")
36
36
  should_be_on 0
37
37
  end
38
38
 
39
- it "returns to the app host when visiting a relative url" do
39
+ it 'returns to the app host when visiting a relative url' do
40
40
  Capybara.app_host = bases[1]
41
41
  @session.visit("#{bases[0]}/host")
42
42
  should_be_on 0
@@ -45,67 +45,66 @@ Capybara::SpecHelper.spec '#current_url, #current_path, #current_host' do
45
45
  Capybara.app_host = nil
46
46
  end
47
47
 
48
- it "is affected by setting Capybara.app_host" do
48
+ it 'is affected by setting Capybara.app_host' do
49
49
  Capybara.app_host = bases[0]
50
- @session.visit("/host")
50
+ @session.visit('/host')
51
51
  should_be_on 0
52
52
  Capybara.app_host = bases[1]
53
- @session.visit("/host")
53
+ @session.visit('/host')
54
54
  should_be_on 1
55
55
  Capybara.app_host = nil
56
56
  end
57
57
 
58
- it "is unaffected by following a relative link" do
58
+ it 'is unaffected by following a relative link' do
59
59
  visit_host_links
60
- @session.click_link("Relative Host")
60
+ @session.click_link('Relative Host')
61
61
  should_be_on 0
62
62
  end
63
63
 
64
- it "is affected by following an absolute link" do
64
+ it 'is affected by following an absolute link' do
65
65
  visit_host_links
66
- @session.click_link("Absolute Host")
66
+ @session.click_link('Absolute Host')
67
67
  should_be_on 1
68
68
  end
69
69
 
70
- it "is unaffected by posting through a relative form" do
70
+ it 'is unaffected by posting through a relative form' do
71
71
  visit_host_links
72
- @session.click_button("Relative Host")
72
+ @session.click_button('Relative Host')
73
73
  should_be_on 0
74
74
  end
75
75
 
76
- it "is affected by posting through an absolute form" do
76
+ it 'is affected by posting through an absolute form' do
77
77
  visit_host_links
78
- @session.click_button("Absolute Host")
78
+ @session.click_button('Absolute Host')
79
79
  should_be_on 1
80
80
  end
81
81
 
82
- it "is affected by following a redirect" do
82
+ it 'is affected by following a redirect' do
83
83
  @session.visit("#{bases[0]}/redirect")
84
- should_be_on 0, "/landed"
84
+ should_be_on 0, '/landed'
85
85
  end
86
86
 
87
- it "is affected by pushState", requires: [:js] do
88
- @session.visit("/with_js")
87
+ it 'is affected by pushState', requires: [:js] do
88
+ @session.visit('/with_js')
89
89
  @session.execute_script("window.history.pushState({}, '', '/pushed')")
90
- expect(@session.current_path).to eq("/pushed")
90
+ expect(@session.current_path).to eq('/pushed')
91
91
  end
92
92
 
93
- it "is affected by replaceState", requires: [:js] do
94
- @session.visit("/with_js")
93
+ it 'is affected by replaceState', requires: [:js] do
94
+ @session.visit('/with_js')
95
95
  @session.execute_script("window.history.replaceState({}, '', '/replaced')")
96
- expect(@session.current_path).to eq("/replaced")
96
+ expect(@session.current_path).to eq('/replaced')
97
97
  end
98
98
 
99
99
  it "doesn't raise exception on a nil current_url" do
100
- skip "Only makes sense when there is a real driver" unless @session.respond_to?(:driver)
101
100
  allow(@session.driver).to receive(:current_url).and_return(nil)
102
- @session.visit("/")
101
+ @session.visit('/')
103
102
  expect { @session.current_url }.not_to raise_exception
104
103
  expect { @session.current_path }.not_to raise_exception
105
104
  end
106
105
 
107
- context "within iframe", requires: [:frames] do
108
- it "should get the url of the top level browsing context" do
106
+ context 'within iframe', requires: [:frames] do
107
+ it 'should get the url of the top level browsing context' do
109
108
  @session.visit('/within_frames')
110
109
  expect(@session.current_url).to match(/within_frames\z/)
111
110
  @session.within_frame('frameOne') do