Skip to content

Commit 51c6b1d

Browse files
committed
rb: update links to new canonical repo
1 parent 3fc2db2 commit 51c6b1d

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

Diff for: rb/README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# selenium-webdriver
22

3-
This gem provides Ruby bindings for WebDriver and has been tested to work on MRI (1.9.2 through 2.1), JRuby and Rubinius.
3+
This gem provides Ruby bindings for WebDriver
4+
and has been tested to work on MRI (1.9.2 through 2.1),
5+
JRuby and Rubinius.
46

57
## Install
68

@@ -10,8 +12,8 @@ This gem provides Ruby bindings for WebDriver and has been tested to work on MRI
1012

1113
* http://rubygems.org/gems/selenium-webdriver
1214
* http://selenium.googlecode.com/git/docs/api/rb/index.html
13-
* http://code.google.com/p/selenium/wiki/RubyBindings
14-
* http://code.google.com/p/selenium/issues/list
15+
* https://github.com/SeleniumHQ/selenium/wiki/RubyBindings
16+
* https.//github.com/SeleniumHQ/selenium/issues
1517

1618
## License
1719

@@ -28,4 +30,3 @@ distributed under the License is distributed on an "AS IS" BASIS,
2830
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2931
See the License for the specific language governing permissions and
3032
limitations under the License.
31-

Diff for: rb/lib/selenium/webdriver/chrome/service.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class Service
1010
START_TIMEOUT = 20
1111
STOP_TIMEOUT = 5
1212
DEFAULT_PORT = 9515
13-
MISSING_TEXT = "Unable to find the chromedriver executable. Please download the server from http://chromedriver.storage.googleapis.com/index.html and place it somewhere on your PATH. More info at http://code.google.com/p/selenium/wiki/ChromeDriver."
13+
MISSING_TEXT = "Unable to find the chromedriver executable. Please download the server from http://chromedriver.storage.googleapis.com/index.html and place it somewhere on your PATH. More info at https://github.com/SeleniumHQ/selenium/wiki/ChromeDriver."
1414

1515
attr_reader :uri
1616

Diff for: rb/lib/selenium/webdriver/common/element.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ def ref
256256

257257
#
258258
# 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
259+
# @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#basic-terms-and-concepts
260260
#
261261
# @api private
262262
#

Diff for: rb/lib/selenium/webdriver/remote/commands.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
class Selenium::WebDriver::Remote::Bridge
33

44
#
5-
# http://code.google.com/p/selenium/wiki/JsonWireProtocol#Command_Reference
5+
# https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#command-reference
66
#
77

88
command :newSession, :post, "session"

Diff for: rb/lib/selenium/webdriver/remote/http/common.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def call(verb, url, command_hash)
3333
puts " > #{headers.inspect}"
3434
end
3535
elsif verb == :post
36-
payload = "{}" # work around http://code.google.com/p/selenium/issues/detail?id=1396
36+
payload = "{}"
3737
headers["Content-Length"] = "2"
3838
end
3939

Diff for: rb/spec/integration/selenium/webdriver/target_locator_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@
192192
end
193193
end
194194

195-
not_compliant_on({:browser => :chrome, :platform => :macosx}, # http://code.google.com/p/chromedriver/issues/detail?id=26
195+
not_compliant_on({:browser => :chrome, :platform => :macosx},
196196
{:browser => :iphone},
197197
{:browser => :safari},
198198
{:browser => :phantomjs}) do

0 commit comments

Comments
 (0)