selenium-webdriver 2.46.1 → 2.46.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (117) hide show
  1. data/CHANGES +7 -0
  2. data/Gemfile.lock +5 -5
  3. data/lib/selenium-client.rb +2 -0
  4. data/lib/selenium-webdriver.rb +2 -0
  5. data/lib/selenium/client.rb +2 -0
  6. data/lib/selenium/client/base.rb +2 -0
  7. data/lib/selenium/client/driver.rb +2 -0
  8. data/lib/selenium/client/errors.rb +2 -0
  9. data/lib/selenium/client/extensions.rb +19 -0
  10. data/lib/selenium/client/idiomatic.rb +2 -0
  11. data/lib/selenium/client/javascript_expression_builder.rb +2 -0
  12. data/lib/selenium/client/javascript_frameworks/jquery.rb +2 -0
  13. data/lib/selenium/client/javascript_frameworks/prototype.rb +2 -0
  14. data/lib/selenium/client/legacy_driver.rb +2 -0
  15. data/lib/selenium/client/protocol.rb +2 -0
  16. data/lib/selenium/client/selenium_helper.rb +2 -0
  17. data/lib/selenium/rake/server_task.rb +2 -0
  18. data/lib/selenium/server.rb +2 -0
  19. data/lib/selenium/webdriver.rb +2 -0
  20. data/lib/selenium/webdriver/android.rb +2 -0
  21. data/lib/selenium/webdriver/android/bridge.rb +2 -0
  22. data/lib/selenium/webdriver/chrome.rb +2 -0
  23. data/lib/selenium/webdriver/chrome/bridge.rb +2 -0
  24. data/lib/selenium/webdriver/chrome/profile.rb +2 -0
  25. data/lib/selenium/webdriver/chrome/service.rb +2 -0
  26. data/lib/selenium/webdriver/common.rb +2 -0
  27. data/lib/selenium/webdriver/common/action_builder.rb +2 -0
  28. data/lib/selenium/webdriver/common/alert.rb +2 -0
  29. data/lib/selenium/webdriver/common/bridge_helper.rb +2 -0
  30. data/lib/selenium/webdriver/common/core_ext/base64.rb +2 -0
  31. data/lib/selenium/webdriver/common/core_ext/dir.rb +2 -0
  32. data/lib/selenium/webdriver/common/core_ext/string.rb +2 -0
  33. data/lib/selenium/webdriver/common/driver.rb +2 -0
  34. data/lib/selenium/webdriver/common/driver_extensions/has_input_devices.rb +2 -0
  35. data/lib/selenium/webdriver/common/driver_extensions/has_location.rb +2 -0
  36. data/lib/selenium/webdriver/common/driver_extensions/has_network_connection.rb +2 -0
  37. data/lib/selenium/webdriver/common/driver_extensions/has_remote_status.rb +2 -0
  38. data/lib/selenium/webdriver/common/driver_extensions/has_session_id.rb +2 -0
  39. data/lib/selenium/webdriver/common/driver_extensions/has_touch_screen.rb +2 -0
  40. data/lib/selenium/webdriver/common/driver_extensions/has_web_storage.rb +2 -0
  41. data/lib/selenium/webdriver/common/driver_extensions/rotatable.rb +2 -0
  42. data/lib/selenium/webdriver/common/driver_extensions/takes_screenshot.rb +2 -0
  43. data/lib/selenium/webdriver/common/driver_extensions/uploads_files.rb +2 -0
  44. data/lib/selenium/webdriver/common/element.rb +2 -0
  45. data/lib/selenium/webdriver/common/error.rb +2 -0
  46. data/lib/selenium/webdriver/common/file_reaper.rb +2 -0
  47. data/lib/selenium/webdriver/common/html5/local_storage.rb +2 -0
  48. data/lib/selenium/webdriver/common/html5/location.rb +2 -0
  49. data/lib/selenium/webdriver/common/html5/session_storage.rb +2 -0
  50. data/lib/selenium/webdriver/common/html5/shared_web_storage.rb +2 -0
  51. data/lib/selenium/webdriver/common/json_helper.rb +2 -0
  52. data/lib/selenium/webdriver/common/keyboard.rb +2 -0
  53. data/lib/selenium/webdriver/common/keys.rb +2 -0
  54. data/lib/selenium/webdriver/common/log_entry.rb +2 -0
  55. data/lib/selenium/webdriver/common/logs.rb +2 -0
  56. data/lib/selenium/webdriver/common/mouse.rb +2 -0
  57. data/lib/selenium/webdriver/common/navigation.rb +2 -0
  58. data/lib/selenium/webdriver/common/options.rb +2 -0
  59. data/lib/selenium/webdriver/common/platform.rb +2 -0
  60. data/lib/selenium/webdriver/common/port_prober.rb +2 -0
  61. data/lib/selenium/webdriver/common/profile_helper.rb +2 -0
  62. data/lib/selenium/webdriver/common/proxy.rb +2 -0
  63. data/lib/selenium/webdriver/common/search_context.rb +2 -0
  64. data/lib/selenium/webdriver/common/socket_lock.rb +2 -0
  65. data/lib/selenium/webdriver/common/socket_poller.rb +2 -0
  66. data/lib/selenium/webdriver/common/target_locator.rb +2 -0
  67. data/lib/selenium/webdriver/common/timeouts.rb +2 -0
  68. data/lib/selenium/webdriver/common/touch_action_builder.rb +2 -0
  69. data/lib/selenium/webdriver/common/touch_screen.rb +2 -0
  70. data/lib/selenium/webdriver/common/wait.rb +2 -0
  71. data/lib/selenium/webdriver/common/window.rb +2 -0
  72. data/lib/selenium/webdriver/common/zipper.rb +2 -0
  73. data/lib/selenium/webdriver/firefox.rb +2 -0
  74. data/lib/selenium/webdriver/firefox/binary.rb +2 -0
  75. data/lib/selenium/webdriver/firefox/bridge.rb +2 -0
  76. data/lib/selenium/webdriver/firefox/extension.rb +2 -0
  77. data/lib/selenium/webdriver/firefox/extension/webdriver.xpi +0 -0
  78. data/lib/selenium/webdriver/firefox/launcher.rb +2 -0
  79. data/lib/selenium/webdriver/firefox/native/linux/amd64/x_ignore_nofocus.so +0 -0
  80. data/lib/selenium/webdriver/firefox/profile.rb +2 -0
  81. data/lib/selenium/webdriver/firefox/profiles_ini.rb +2 -0
  82. data/lib/selenium/webdriver/firefox/socket_lock.rb +17 -0
  83. data/lib/selenium/webdriver/firefox/util.rb +2 -0
  84. data/lib/selenium/webdriver/ie.rb +2 -0
  85. data/lib/selenium/webdriver/ie/bridge.rb +2 -0
  86. data/lib/selenium/webdriver/ie/server.rb +2 -0
  87. data/lib/selenium/webdriver/iphone.rb +2 -0
  88. data/lib/selenium/webdriver/iphone/bridge.rb +2 -0
  89. data/lib/selenium/webdriver/phantomjs.rb +2 -0
  90. data/lib/selenium/webdriver/phantomjs/bridge.rb +2 -0
  91. data/lib/selenium/webdriver/phantomjs/service.rb +2 -0
  92. data/lib/selenium/webdriver/remote.rb +2 -0
  93. data/lib/selenium/webdriver/remote/bridge.rb +2 -0
  94. data/lib/selenium/webdriver/remote/capabilities.rb +2 -0
  95. data/lib/selenium/webdriver/remote/commands.rb +2 -0
  96. data/lib/selenium/webdriver/remote/http/common.rb +2 -0
  97. data/lib/selenium/webdriver/remote/http/curb.rb +2 -0
  98. data/lib/selenium/webdriver/remote/http/default.rb +2 -0
  99. data/lib/selenium/webdriver/remote/http/persistent.rb +2 -0
  100. data/lib/selenium/webdriver/remote/response.rb +2 -0
  101. data/lib/selenium/webdriver/remote/server_error.rb +2 -0
  102. data/lib/selenium/webdriver/safari.rb +2 -0
  103. data/lib/selenium/webdriver/safari/bridge.rb +2 -0
  104. data/lib/selenium/webdriver/safari/browser.rb +2 -0
  105. data/lib/selenium/webdriver/safari/extensions.rb +2 -0
  106. data/lib/selenium/webdriver/safari/options.rb +2 -0
  107. data/lib/selenium/webdriver/safari/server.rb +2 -0
  108. data/lib/selenium/webdriver/support.rb +2 -0
  109. data/lib/selenium/webdriver/support/abstract_event_listener.rb +2 -0
  110. data/lib/selenium/webdriver/support/block_event_listener.rb +2 -0
  111. data/lib/selenium/webdriver/support/color.rb +2 -0
  112. data/lib/selenium/webdriver/support/event_firing_bridge.rb +2 -0
  113. data/lib/selenium/webdriver/support/select.rb +2 -0
  114. data/selenium-webdriver.gemspec +1 -1
  115. metadata +77 -79
  116. data/COPYING +0 -204
  117. data/lib/selenium/webdriver/common/driver_extensions/has_browser_connection.rb +0 -17
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -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 Firefox
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+ #
1
3
  # Licensed to the Software Freedom Conservancy (SFC) under one
2
4
  # or more contributor license agreements. See the NOTICE file
3
5
  # distributed with this work for additional information
@@ -7,7 +7,7 @@ end
7
7
 
8
8
  Gem::Specification.new do |s|
9
9
  s.name = "selenium-webdriver"
10
- s.version = "2.46.1"
10
+ s.version = "2.46.2"
11
11
 
12
12
  s.authors = ["Jari Bakken"]
13
13
  s.email = "jari.bakken@gmail.com"
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: selenium-webdriver
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 2.46.1
5
+ version: 2.46.2
6
6
  platform: ruby
7
7
  authors:
8
8
  - Jari Bakken
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2015-06-04 00:00:00 -05:00
13
+ date: 2015-06-05 00:00:00 +07:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
@@ -116,129 +116,127 @@ extensions: []
116
116
  extra_rdoc_files: []
117
117
 
118
118
  files:
119
- - COPYING
120
- - README.md
121
- - selenium-webdriver.gemspec
119
+ - CHANGES
122
120
  - Gemfile
123
- - LICENSE
124
121
  - Gemfile.lock
125
- - CHANGES
126
- - lib/selenium-webdriver.rb
122
+ - LICENSE
123
+ - README.md
124
+ - selenium-webdriver.gemspec
127
125
  - lib/selenium-client.rb
126
+ - lib/selenium-webdriver.rb
128
127
  - lib/selenium/client.rb
129
128
  - lib/selenium/server.rb
130
129
  - lib/selenium/webdriver.rb
130
+ - lib/selenium/client/base.rb
131
+ - lib/selenium/client/driver.rb
132
+ - lib/selenium/client/errors.rb
133
+ - lib/selenium/client/extensions.rb
134
+ - lib/selenium/client/idiomatic.rb
135
+ - lib/selenium/client/javascript_expression_builder.rb
136
+ - lib/selenium/client/legacy_driver.rb
137
+ - lib/selenium/client/protocol.rb
138
+ - lib/selenium/client/selenium_helper.rb
139
+ - lib/selenium/client/javascript_frameworks/jquery.rb
140
+ - lib/selenium/client/javascript_frameworks/prototype.rb
131
141
  - lib/selenium/rake/server_task.rb
132
- - lib/selenium/webdriver/phantomjs.rb
133
- - lib/selenium/webdriver/common.rb
134
- - lib/selenium/webdriver/support.rb
135
142
  - lib/selenium/webdriver/android.rb
136
- - lib/selenium/webdriver/remote.rb
137
- - lib/selenium/webdriver/iphone.rb
143
+ - lib/selenium/webdriver/chrome.rb
144
+ - lib/selenium/webdriver/common.rb
145
+ - lib/selenium/webdriver/firefox.rb
138
146
  - lib/selenium/webdriver/ie.rb
147
+ - lib/selenium/webdriver/iphone.rb
148
+ - lib/selenium/webdriver/phantomjs.rb
149
+ - lib/selenium/webdriver/remote.rb
139
150
  - lib/selenium/webdriver/safari.rb
140
- - lib/selenium/webdriver/firefox.rb
141
- - lib/selenium/webdriver/chrome.rb
142
- - lib/selenium/webdriver/common/platform.rb
143
- - lib/selenium/webdriver/common/options.rb
144
- - lib/selenium/webdriver/common/window.rb
145
- - lib/selenium/webdriver/common/socket_lock.rb
146
- - lib/selenium/webdriver/common/navigation.rb
147
- - lib/selenium/webdriver/common/logs.rb
151
+ - lib/selenium/webdriver/support.rb
152
+ - lib/selenium/webdriver/android/bridge.rb
153
+ - lib/selenium/webdriver/chrome/bridge.rb
154
+ - lib/selenium/webdriver/chrome/profile.rb
155
+ - lib/selenium/webdriver/chrome/service.rb
156
+ - lib/selenium/webdriver/common/action_builder.rb
157
+ - lib/selenium/webdriver/common/alert.rb
158
+ - lib/selenium/webdriver/common/bridge_helper.rb
159
+ - lib/selenium/webdriver/common/driver.rb
160
+ - lib/selenium/webdriver/common/element.rb
148
161
  - lib/selenium/webdriver/common/error.rb
149
- - lib/selenium/webdriver/common/proxy.rb
150
162
  - lib/selenium/webdriver/common/file_reaper.rb
151
- - lib/selenium/webdriver/common/search_context.rb
152
- - lib/selenium/webdriver/common/driver.rb
153
- - lib/selenium/webdriver/common/mouse.rb
154
163
  - lib/selenium/webdriver/common/json_helper.rb
164
+ - lib/selenium/webdriver/common/keyboard.rb
165
+ - lib/selenium/webdriver/common/keys.rb
166
+ - lib/selenium/webdriver/common/log_entry.rb
167
+ - lib/selenium/webdriver/common/logs.rb
168
+ - lib/selenium/webdriver/common/mouse.rb
169
+ - lib/selenium/webdriver/common/navigation.rb
170
+ - lib/selenium/webdriver/common/options.rb
171
+ - lib/selenium/webdriver/common/platform.rb
155
172
  - lib/selenium/webdriver/common/port_prober.rb
156
- - lib/selenium/webdriver/common/target_locator.rb
157
173
  - lib/selenium/webdriver/common/profile_helper.rb
158
- - lib/selenium/webdriver/common/log_entry.rb
159
- - lib/selenium/webdriver/common/bridge_helper.rb
160
- - lib/selenium/webdriver/common/keys.rb
161
- - lib/selenium/webdriver/common/zipper.rb
162
- - lib/selenium/webdriver/common/action_builder.rb
163
- - lib/selenium/webdriver/common/element.rb
174
+ - lib/selenium/webdriver/common/proxy.rb
175
+ - lib/selenium/webdriver/common/search_context.rb
176
+ - lib/selenium/webdriver/common/socket_lock.rb
177
+ - lib/selenium/webdriver/common/socket_poller.rb
178
+ - lib/selenium/webdriver/common/target_locator.rb
164
179
  - lib/selenium/webdriver/common/timeouts.rb
165
- - lib/selenium/webdriver/common/alert.rb
180
+ - lib/selenium/webdriver/common/touch_action_builder.rb
166
181
  - lib/selenium/webdriver/common/touch_screen.rb
167
- - lib/selenium/webdriver/common/socket_poller.rb
168
182
  - lib/selenium/webdriver/common/wait.rb
169
- - lib/selenium/webdriver/common/keyboard.rb
170
- - lib/selenium/webdriver/common/touch_action_builder.rb
171
- - lib/selenium/webdriver/common/core_ext/string.rb
183
+ - lib/selenium/webdriver/common/window.rb
184
+ - lib/selenium/webdriver/common/zipper.rb
172
185
  - lib/selenium/webdriver/common/core_ext/base64.rb
173
186
  - lib/selenium/webdriver/common/core_ext/dir.rb
174
- - lib/selenium/webdriver/common/driver_extensions/has_web_storage.rb
175
- - lib/selenium/webdriver/common/driver_extensions/has_browser_connection.rb
187
+ - lib/selenium/webdriver/common/core_ext/string.rb
176
188
  - lib/selenium/webdriver/common/driver_extensions/has_input_devices.rb
177
- - lib/selenium/webdriver/common/driver_extensions/uploads_files.rb
178
189
  - lib/selenium/webdriver/common/driver_extensions/has_location.rb
179
- - lib/selenium/webdriver/common/driver_extensions/takes_screenshot.rb
180
- - lib/selenium/webdriver/common/driver_extensions/has_remote_status.rb
181
190
  - lib/selenium/webdriver/common/driver_extensions/has_network_connection.rb
182
- - lib/selenium/webdriver/common/driver_extensions/rotatable.rb
183
- - lib/selenium/webdriver/common/driver_extensions/has_touch_screen.rb
191
+ - lib/selenium/webdriver/common/driver_extensions/has_remote_status.rb
184
192
  - lib/selenium/webdriver/common/driver_extensions/has_session_id.rb
193
+ - lib/selenium/webdriver/common/driver_extensions/has_touch_screen.rb
194
+ - lib/selenium/webdriver/common/driver_extensions/has_web_storage.rb
195
+ - lib/selenium/webdriver/common/driver_extensions/rotatable.rb
196
+ - lib/selenium/webdriver/common/driver_extensions/takes_screenshot.rb
197
+ - lib/selenium/webdriver/common/driver_extensions/uploads_files.rb
198
+ - lib/selenium/webdriver/common/html5/local_storage.rb
185
199
  - lib/selenium/webdriver/common/html5/location.rb
186
- - lib/selenium/webdriver/common/html5/shared_web_storage.rb
187
200
  - lib/selenium/webdriver/common/html5/session_storage.rb
188
- - lib/selenium/webdriver/common/html5/local_storage.rb
189
- - lib/selenium/webdriver/phantomjs/bridge.rb
190
- - lib/selenium/webdriver/phantomjs/service.rb
191
- - lib/selenium/webdriver/chrome/bridge.rb
192
- - lib/selenium/webdriver/chrome/profile.rb
193
- - lib/selenium/webdriver/chrome/service.rb
194
- - lib/selenium/webdriver/android/bridge.rb
195
- - lib/selenium/webdriver/firefox/socket_lock.rb
201
+ - lib/selenium/webdriver/common/html5/shared_web_storage.rb
202
+ - lib/selenium/webdriver/firefox/binary.rb
196
203
  - lib/selenium/webdriver/firefox/bridge.rb
197
- - lib/selenium/webdriver/firefox/profiles_ini.rb
198
204
  - lib/selenium/webdriver/firefox/extension.rb
199
- - lib/selenium/webdriver/firefox/binary.rb
200
- - lib/selenium/webdriver/firefox/util.rb
201
205
  - lib/selenium/webdriver/firefox/launcher.rb
202
206
  - lib/selenium/webdriver/firefox/profile.rb
203
- - lib/selenium/webdriver/firefox/native/linux/amd64/x_ignore_nofocus.so
204
- - lib/selenium/webdriver/firefox/native/linux/x86/x_ignore_nofocus.so
207
+ - lib/selenium/webdriver/firefox/profiles_ini.rb
208
+ - lib/selenium/webdriver/firefox/socket_lock.rb
209
+ - lib/selenium/webdriver/firefox/util.rb
205
210
  - lib/selenium/webdriver/firefox/extension/prefs.json
206
211
  - lib/selenium/webdriver/firefox/extension/webdriver.xpi
212
+ - lib/selenium/webdriver/firefox/native/linux/amd64/x_ignore_nofocus.so
213
+ - lib/selenium/webdriver/firefox/native/linux/x86/x_ignore_nofocus.so
207
214
  - lib/selenium/webdriver/ie/bridge.rb
208
215
  - lib/selenium/webdriver/ie/server.rb
209
- - lib/selenium/webdriver/remote/commands.rb
216
+ - lib/selenium/webdriver/iphone/bridge.rb
217
+ - lib/selenium/webdriver/phantomjs/bridge.rb
218
+ - lib/selenium/webdriver/phantomjs/service.rb
210
219
  - lib/selenium/webdriver/remote/bridge.rb
211
- - lib/selenium/webdriver/remote/server_error.rb
212
- - lib/selenium/webdriver/remote/response.rb
213
220
  - lib/selenium/webdriver/remote/capabilities.rb
214
- - lib/selenium/webdriver/remote/http/default.rb
221
+ - lib/selenium/webdriver/remote/commands.rb
222
+ - lib/selenium/webdriver/remote/response.rb
223
+ - lib/selenium/webdriver/remote/server_error.rb
215
224
  - lib/selenium/webdriver/remote/http/common.rb
216
- - lib/selenium/webdriver/remote/http/persistent.rb
217
225
  - lib/selenium/webdriver/remote/http/curb.rb
218
- - lib/selenium/webdriver/iphone/bridge.rb
219
- - lib/selenium/webdriver/safari/options.rb
220
- - lib/selenium/webdriver/safari/browser.rb
226
+ - lib/selenium/webdriver/remote/http/default.rb
227
+ - lib/selenium/webdriver/remote/http/persistent.rb
221
228
  - lib/selenium/webdriver/safari/bridge.rb
229
+ - lib/selenium/webdriver/safari/browser.rb
222
230
  - lib/selenium/webdriver/safari/extensions.rb
231
+ - lib/selenium/webdriver/safari/options.rb
223
232
  - lib/selenium/webdriver/safari/server.rb
224
- - lib/selenium/webdriver/safari/resources/SafariDriver.safariextz
225
233
  - lib/selenium/webdriver/safari/resources/client.js
226
- - lib/selenium/webdriver/support/event_firing_bridge.rb
234
+ - lib/selenium/webdriver/safari/resources/SafariDriver.safariextz
227
235
  - lib/selenium/webdriver/support/abstract_event_listener.rb
228
236
  - lib/selenium/webdriver/support/block_event_listener.rb
229
237
  - lib/selenium/webdriver/support/color.rb
238
+ - lib/selenium/webdriver/support/event_firing_bridge.rb
230
239
  - lib/selenium/webdriver/support/select.rb
231
- - lib/selenium/client/errors.rb
232
- - lib/selenium/client/idiomatic.rb
233
- - lib/selenium/client/selenium_helper.rb
234
- - lib/selenium/client/extensions.rb
235
- - lib/selenium/client/driver.rb
236
- - lib/selenium/client/legacy_driver.rb
237
- - lib/selenium/client/base.rb
238
- - lib/selenium/client/protocol.rb
239
- - lib/selenium/client/javascript_expression_builder.rb
240
- - lib/selenium/client/javascript_frameworks/jquery.rb
241
- - lib/selenium/client/javascript_frameworks/prototype.rb
242
240
  has_rdoc: true
243
241
  homepage: https://github.com/seleniumhq/selenium
244
242
  licenses: