selenium-webdriver 2.45.0 → 2.46.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (122) hide show
  1. data/CHANGES +18 -3
  2. data/Gemfile.lock +5 -5
  3. data/LICENSE +202 -0
  4. data/README.md +13 -8
  5. data/lib/selenium-client.rb +17 -0
  6. data/lib/selenium-webdriver.rb +17 -0
  7. data/lib/selenium/client.rb +17 -0
  8. data/lib/selenium/client/base.rb +17 -0
  9. data/lib/selenium/client/driver.rb +17 -0
  10. data/lib/selenium/client/errors.rb +17 -0
  11. data/lib/selenium/client/extensions.rb +1 -3
  12. data/lib/selenium/client/idiomatic.rb +17 -0
  13. data/lib/selenium/client/javascript_expression_builder.rb +17 -0
  14. data/lib/selenium/client/javascript_frameworks/jquery.rb +17 -0
  15. data/lib/selenium/client/javascript_frameworks/prototype.rb +17 -0
  16. data/lib/selenium/client/legacy_driver.rb +15 -15
  17. data/lib/selenium/client/protocol.rb +17 -0
  18. data/lib/selenium/client/selenium_helper.rb +18 -5
  19. data/lib/selenium/rake/server_task.rb +17 -0
  20. data/lib/selenium/server.rb +17 -0
  21. data/lib/selenium/webdriver.rb +18 -3
  22. data/lib/selenium/webdriver/android.rb +17 -0
  23. data/lib/selenium/webdriver/android/bridge.rb +18 -1
  24. data/lib/selenium/webdriver/chrome.rb +20 -3
  25. data/lib/selenium/webdriver/chrome/bridge.rb +17 -0
  26. data/lib/selenium/webdriver/chrome/profile.rb +18 -1
  27. data/lib/selenium/webdriver/chrome/service.rb +64 -21
  28. data/lib/selenium/webdriver/common.rb +19 -1
  29. data/lib/selenium/webdriver/common/action_builder.rb +17 -0
  30. data/lib/selenium/webdriver/common/alert.rb +17 -0
  31. data/lib/selenium/webdriver/common/bridge_helper.rb +18 -1
  32. data/lib/selenium/webdriver/common/core_ext/base64.rb +17 -0
  33. data/lib/selenium/webdriver/common/core_ext/dir.rb +17 -0
  34. data/lib/selenium/webdriver/common/core_ext/string.rb +17 -0
  35. data/lib/selenium/webdriver/common/driver.rb +18 -3
  36. data/lib/selenium/webdriver/common/driver_extensions/has_input_devices.rb +17 -0
  37. data/lib/selenium/webdriver/common/driver_extensions/has_location.rb +21 -4
  38. data/lib/selenium/webdriver/common/driver_extensions/has_network_connection.rb +57 -0
  39. data/lib/selenium/webdriver/common/driver_extensions/has_remote_status.rb +21 -4
  40. data/lib/selenium/webdriver/common/driver_extensions/has_session_id.rb +17 -0
  41. data/lib/selenium/webdriver/common/driver_extensions/has_touch_screen.rb +21 -4
  42. data/lib/selenium/webdriver/common/driver_extensions/has_web_storage.rb +17 -0
  43. data/lib/selenium/webdriver/common/driver_extensions/rotatable.rb +17 -0
  44. data/lib/selenium/webdriver/common/driver_extensions/takes_screenshot.rb +17 -0
  45. data/lib/selenium/webdriver/common/driver_extensions/uploads_files.rb +17 -0
  46. data/lib/selenium/webdriver/common/element.rb +23 -3
  47. data/lib/selenium/webdriver/common/error.rb +17 -0
  48. data/lib/selenium/webdriver/common/file_reaper.rb +17 -0
  49. data/lib/selenium/webdriver/common/html5/local_storage.rb +21 -4
  50. data/lib/selenium/webdriver/common/html5/location.rb +17 -0
  51. data/lib/selenium/webdriver/common/html5/session_storage.rb +21 -4
  52. data/lib/selenium/webdriver/common/html5/shared_web_storage.rb +22 -5
  53. data/lib/selenium/webdriver/common/json_helper.rb +20 -3
  54. data/lib/selenium/webdriver/common/keyboard.rb +17 -0
  55. data/lib/selenium/webdriver/common/keys.rb +16 -1
  56. data/lib/selenium/webdriver/common/log_entry.rb +21 -3
  57. data/lib/selenium/webdriver/common/logs.rb +20 -3
  58. data/lib/selenium/webdriver/common/mouse.rb +17 -0
  59. data/lib/selenium/webdriver/common/navigation.rb +17 -0
  60. data/lib/selenium/webdriver/common/options.rb +17 -0
  61. data/lib/selenium/webdriver/common/platform.rb +17 -0
  62. data/lib/selenium/webdriver/common/port_prober.rb +17 -0
  63. data/lib/selenium/webdriver/common/profile_helper.rb +17 -0
  64. data/lib/selenium/webdriver/common/proxy.rb +17 -0
  65. data/lib/selenium/webdriver/common/search_context.rb +17 -0
  66. data/lib/selenium/webdriver/common/socket_lock.rb +76 -0
  67. data/lib/selenium/webdriver/common/socket_poller.rb +17 -0
  68. data/lib/selenium/webdriver/common/target_locator.rb +17 -0
  69. data/lib/selenium/webdriver/common/timeouts.rb +17 -0
  70. data/lib/selenium/webdriver/common/touch_action_builder.rb +20 -3
  71. data/lib/selenium/webdriver/common/touch_screen.rb +20 -3
  72. data/lib/selenium/webdriver/common/wait.rb +17 -0
  73. data/lib/selenium/webdriver/common/window.rb +20 -4
  74. data/lib/selenium/webdriver/common/zipper.rb +17 -0
  75. data/lib/selenium/webdriver/firefox.rb +20 -4
  76. data/lib/selenium/webdriver/firefox/binary.rb +17 -0
  77. data/lib/selenium/webdriver/firefox/bridge.rb +18 -3
  78. data/lib/selenium/webdriver/firefox/extension.rb +17 -0
  79. data/lib/selenium/webdriver/firefox/extension/prefs.json +2 -0
  80. data/lib/selenium/webdriver/firefox/extension/webdriver.xpi +0 -0
  81. data/lib/selenium/webdriver/firefox/launcher.rb +17 -8
  82. data/lib/selenium/webdriver/firefox/native/linux/amd64/x_ignore_nofocus.so +0 -0
  83. data/lib/selenium/webdriver/firefox/profile.rb +17 -0
  84. data/lib/selenium/webdriver/firefox/profiles_ini.rb +17 -0
  85. data/lib/selenium/webdriver/firefox/util.rb +17 -0
  86. data/lib/selenium/webdriver/ie.rb +21 -3
  87. data/lib/selenium/webdriver/ie/bridge.rb +17 -0
  88. data/lib/selenium/webdriver/ie/server.rb +21 -4
  89. data/lib/selenium/webdriver/iphone.rb +17 -0
  90. data/lib/selenium/webdriver/iphone/bridge.rb +17 -0
  91. data/lib/selenium/webdriver/phantomjs.rb +20 -3
  92. data/lib/selenium/webdriver/phantomjs/bridge.rb +17 -0
  93. data/lib/selenium/webdriver/phantomjs/service.rb +17 -0
  94. data/lib/selenium/webdriver/remote.rb +20 -5
  95. data/lib/selenium/webdriver/remote/bridge.rb +24 -9
  96. data/lib/selenium/webdriver/remote/capabilities.rb +17 -9
  97. data/lib/selenium/webdriver/remote/commands.rb +20 -4
  98. data/lib/selenium/webdriver/remote/http/common.rb +18 -1
  99. data/lib/selenium/webdriver/remote/http/curb.rb +17 -0
  100. data/lib/selenium/webdriver/remote/http/default.rb +26 -4
  101. data/lib/selenium/webdriver/remote/http/persistent.rb +17 -0
  102. data/lib/selenium/webdriver/remote/response.rb +17 -0
  103. data/lib/selenium/webdriver/remote/server_error.rb +19 -2
  104. data/lib/selenium/webdriver/safari.rb +20 -3
  105. data/lib/selenium/webdriver/safari/bridge.rb +21 -4
  106. data/lib/selenium/webdriver/safari/browser.rb +21 -5
  107. data/lib/selenium/webdriver/safari/extensions.rb +21 -4
  108. data/lib/selenium/webdriver/safari/options.rb +21 -4
  109. data/lib/selenium/webdriver/safari/resources/SafariDriver.safariextz +0 -0
  110. data/lib/selenium/webdriver/safari/resources/client.js +1 -1
  111. data/lib/selenium/webdriver/safari/server.rb +21 -4
  112. data/lib/selenium/webdriver/support.rb +17 -0
  113. data/lib/selenium/webdriver/support/abstract_event_listener.rb +21 -4
  114. data/lib/selenium/webdriver/support/block_event_listener.rb +21 -4
  115. data/lib/selenium/webdriver/support/color.rb +22 -5
  116. data/lib/selenium/webdriver/support/event_firing_bridge.rb +17 -0
  117. data/lib/selenium/webdriver/support/select.rb +21 -4
  118. data/selenium-webdriver.gemspec +2 -2
  119. metadata +78 -78
  120. data/lib/selenium/webdriver/opera.rb +0 -24
  121. data/lib/selenium/webdriver/opera/bridge.rb +0 -112
  122. data/lib/selenium/webdriver/opera/service.rb +0 -49
@@ -1,3 +1,20 @@
1
+ # Licensed to the Software Freedom Conservancy (SFC) under one
2
+ # or more contributor license agreements. See the NOTICE file
3
+ # distributed with this work for additional information
4
+ # regarding copyright ownership. The SFC licenses this file
5
+ # to you under the Apache License, Version 2.0 (the
6
+ # "License"); you may not use this file except in compliance
7
+ # with the License. You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  module Selenium
2
19
  module WebDriver
3
20
 
@@ -1,3 +1,20 @@
1
+ # Licensed to the Software Freedom Conservancy (SFC) under one
2
+ # or more contributor license agreements. See the NOTICE file
3
+ # distributed with this work for additional information
4
+ # regarding copyright ownership. The SFC licenses this file
5
+ # to you under the Apache License, Version 2.0 (the
6
+ # "License"); you may not use this file except in compliance
7
+ # with the License. You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  module Selenium
2
19
  module WebDriver
3
20
 
@@ -1,3 +1,20 @@
1
+ # Licensed to the Software Freedom Conservancy (SFC) under one
2
+ # or more contributor license agreements. See the NOTICE file
3
+ # distributed with this work for additional information
4
+ # regarding copyright ownership. The SFC licenses this file
5
+ # to you under the Apache License, Version 2.0 (the
6
+ # "License"); you may not use this file except in compliance
7
+ # with the License. You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  module Selenium
2
19
  module WebDriver
3
20
  class Element
@@ -133,7 +150,7 @@ module Selenium
133
150
  #
134
151
  # Note that the events fired by this event may not be as you'd expect. In particular, we don't
135
152
  # fire any keyboard or mouse events. If you want to ensure keyboard events are
136
- # fired, consider using #send_keys with the backspace key. To ensure you get a change event,
153
+ # fired, consider using #send_keys with the backspace key. To ensure you get a change event,
137
154
  # consider following with a call to #send_keys with the tab key.
138
155
  #
139
156
 
@@ -256,7 +273,7 @@ module Selenium
256
273
 
257
274
  #
258
275
  # Convert to a WebElement JSON Object for transmission over the wire.
259
- # @see http://code.google.com/p/selenium/wiki/JsonWireProtocol#Basic_Concepts_And_Terms
276
+ # @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#basic-terms-and-concepts
260
277
  #
261
278
  # @api private
262
279
  #
@@ -272,7 +289,10 @@ module Selenium
272
289
  #
273
290
 
274
291
  def as_json(opts = nil)
275
- { :ELEMENT => @id }
292
+ {
293
+ :ELEMENT => @id,
294
+ "element-6066-11e4-a52e-4f735466cecf" => @id
295
+ }
276
296
  end
277
297
 
278
298
  private
@@ -1,3 +1,20 @@
1
+ # Licensed to the Software Freedom Conservancy (SFC) under one
2
+ # or more contributor license agreements. See the NOTICE file
3
+ # distributed with this work for additional information
4
+ # regarding copyright ownership. The SFC licenses this file
5
+ # to you under the Apache License, Version 2.0 (the
6
+ # "License"); you may not use this file except in compliance
7
+ # with the License. You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  module Selenium
2
19
  module WebDriver
3
20
  module Error
@@ -1,3 +1,20 @@
1
+ # Licensed to the Software Freedom Conservancy (SFC) under one
2
+ # or more contributor license agreements. See the NOTICE file
3
+ # distributed with this work for additional information
4
+ # regarding copyright ownership. The SFC licenses this file
5
+ # to you under the Apache License, Version 2.0 (the
6
+ # "License"); you may not use this file except in compliance
7
+ # with the License. You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  module Selenium
2
19
  module WebDriver
3
20
 
@@ -1,3 +1,20 @@
1
+ # Licensed to the Software Freedom Conservancy (SFC) under one
2
+ # or more contributor license agreements. See the NOTICE file
3
+ # distributed with this work for additional information
4
+ # regarding copyright ownership. The SFC licenses this file
5
+ # to you under the Apache License, Version 2.0 (the
6
+ # "License"); you may not use this file except in compliance
7
+ # with the License. You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  module Selenium
2
19
  module WebDriver
3
20
  module HTML5
@@ -35,8 +52,8 @@ module Selenium
35
52
  def keys
36
53
  @bridge.getLocalStorageKeys.reverse
37
54
  end
38
- end
39
55
 
40
- end
41
- end
42
- end
56
+ end # LocalStorage
57
+ end # HTML5
58
+ end # WebDriver
59
+ end # Selenium
@@ -0,0 +1,17 @@
1
+ # Licensed to the Software Freedom Conservancy (SFC) under one
2
+ # or more contributor license agreements. See the NOTICE file
3
+ # distributed with this work for additional information
4
+ # regarding copyright ownership. The SFC licenses this file
5
+ # to you under the Apache License, Version 2.0 (the
6
+ # "License"); you may not use this file except in compliance
7
+ # with the License. You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
@@ -1,3 +1,20 @@
1
+ # Licensed to the Software Freedom Conservancy (SFC) under one
2
+ # or more contributor license agreements. See the NOTICE file
3
+ # distributed with this work for additional information
4
+ # regarding copyright ownership. The SFC licenses this file
5
+ # to you under the Apache License, Version 2.0 (the
6
+ # "License"); you may not use this file except in compliance
7
+ # with the License. You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  module Selenium
2
19
  module WebDriver
3
20
  module HTML5
@@ -37,8 +54,8 @@ module Selenium
37
54
  def initialize(bridge)
38
55
  @bridge = bridge
39
56
  end
40
- end
41
57
 
42
- end
43
- end
44
- end
58
+ end # SessionStorage
59
+ end # HTML5
60
+ end # WebDriver
61
+ end # Selenium
@@ -1,3 +1,20 @@
1
+ # Licensed to the Software Freedom Conservancy (SFC) under one
2
+ # or more contributor license agreements. See the NOTICE file
3
+ # distributed with this work for additional information
4
+ # regarding copyright ownership. The SFC licenses this file
5
+ # to you under the Apache License, Version 2.0 (the
6
+ # "License"); you may not use this file except in compliance
7
+ # with the License. You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  module Selenium
2
19
  module WebDriver
3
20
  module HTML5
@@ -20,7 +37,7 @@ module Selenium
20
37
  yield key
21
38
  else
22
39
  # should be KeyError, but it's 1.9-specific
23
- raise IndexError, "missing key #{key.inspect}"
40
+ raise IndexError, "missing key #{key.inspect}"
24
41
  end
25
42
  end
26
43
 
@@ -35,8 +52,8 @@ module Selenium
35
52
  yield k, self[k]
36
53
  end
37
54
  end
38
- end
39
55
 
40
- end
41
- end
42
- end
56
+ end # SharedWebStorage
57
+ end # HTML5
58
+ end # WebDriver
59
+ end # Selenium
@@ -1,3 +1,20 @@
1
+ # Licensed to the Software Freedom Conservancy (SFC) under one
2
+ # or more contributor license agreements. See the NOTICE file
3
+ # distributed with this work for additional information
4
+ # regarding copyright ownership. The SFC licenses this file
5
+ # to you under the Apache License, Version 2.0 (the
6
+ # "License"); you may not use this file except in compliance
7
+ # with the License. You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  module Selenium
2
19
  module WebDriver
3
20
  module JsonHelper
@@ -29,6 +46,6 @@ module Selenium
29
46
  end
30
47
  end
31
48
 
32
- end
33
- end
34
- end
49
+ end # JsonHelper
50
+ end # WebDriver
51
+ end # Selenium
@@ -1,3 +1,20 @@
1
+ # Licensed to the Software Freedom Conservancy (SFC) under one
2
+ # or more contributor license agreements. See the NOTICE file
3
+ # distributed with this work for additional information
4
+ # regarding copyright ownership. The SFC licenses this file
5
+ # to you under the Apache License, Version 2.0 (the
6
+ # "License"); you may not use this file except in compliance
7
+ # with the License. You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  module Selenium
2
19
  module WebDriver
3
20
 
@@ -1,4 +1,19 @@
1
- # encoding: utf-8
1
+ # Licensed to the Software Freedom Conservancy (SFC) under one
2
+ # or more contributor license agreements. See the NOTICE file
3
+ # distributed with this work for additional information
4
+ # regarding copyright ownership. The SFC licenses this file
5
+ # to you under the Apache License, Version 2.0 (the
6
+ # "License"); you may not use this file except in compliance
7
+ # with the License. You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
2
17
 
3
18
  module Selenium
4
19
  module WebDriver
@@ -1,3 +1,20 @@
1
+ # Licensed to the Software Freedom Conservancy (SFC) under one
2
+ # or more contributor license agreements. See the NOTICE file
3
+ # distributed with this work for additional information
4
+ # regarding copyright ownership. The SFC licenses this file
5
+ # to you under the Apache License, Version 2.0 (the
6
+ # "License"); you may not use this file except in compliance
7
+ # with the License. You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  module Selenium
2
19
  module WebDriver
3
20
  class LogEntry
@@ -24,6 +41,7 @@ module Selenium
24
41
  def time
25
42
  Time.at timestamp / 1000
26
43
  end
27
- end
28
- end
29
- end
44
+
45
+ end # LogEntry
46
+ end # WebDriver
47
+ end # Selenium
@@ -1,3 +1,20 @@
1
+ # Licensed to the Software Freedom Conservancy (SFC) under one
2
+ # or more contributor license agreements. See the NOTICE file
3
+ # distributed with this work for additional information
4
+ # regarding copyright ownership. The SFC licenses this file
5
+ # to you under the Apache License, Version 2.0 (the
6
+ # "License"); you may not use this file except in compliance
7
+ # with the License. You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  module Selenium
2
19
  module WebDriver
3
20
  class Logs
@@ -18,6 +35,6 @@ module Selenium
18
35
  @bridge.getAvailableLogTypes
19
36
  end
20
37
 
21
- end
22
- end
23
- end
38
+ end # Logs
39
+ end # WebDriver
40
+ end # Selenium
@@ -1,3 +1,20 @@
1
+ # Licensed to the Software Freedom Conservancy (SFC) under one
2
+ # or more contributor license agreements. See the NOTICE file
3
+ # distributed with this work for additional information
4
+ # regarding copyright ownership. The SFC licenses this file
5
+ # to you under the Apache License, Version 2.0 (the
6
+ # "License"); you may not use this file except in compliance
7
+ # with the License. You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  module Selenium
2
19
  module WebDriver
3
20
 
@@ -1,3 +1,20 @@
1
+ # Licensed to the Software Freedom Conservancy (SFC) under one
2
+ # or more contributor license agreements. See the NOTICE file
3
+ # distributed with this work for additional information
4
+ # regarding copyright ownership. The SFC licenses this file
5
+ # to you under the Apache License, Version 2.0 (the
6
+ # "License"); you may not use this file except in compliance
7
+ # with the License. You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  module Selenium
2
19
  module WebDriver
3
20
  class Navigation