From 035b31093b30f0ed2a5e496640a79e44220fa1ea Mon Sep 17 00:00:00 2001 From: Prateek Goyal Date: Thu, 2 May 2019 15:07:54 +0530 Subject: [PATCH 1/2] bugFix: Change the hyperlink for JSONWireProtocol --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7e680d8c..05584b45 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ module is a Perl implementation of the client for the Webdriver [JSONWireProtocol that Selenium provides.][jsonwire] [wd]: http://www.seleniumhq.org/ -[jsonwire]: https://code.google.com/p/selenium/wiki/JsonWireProtocol +[jsonwire]: https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol [standalone]: http://selenium-release.storage.googleapis.com/index.html ## Installation From 639605092776f07923c5348863b2a6365c7525c9 Mon Sep 17 00:00:00 2001 From: Prateek Goyal Date: Thu, 2 May 2019 15:42:47 +0530 Subject: [PATCH 2/2] bugFix: Change links to refer to Selenium langiage bindings and JsonWireProtocol in POD --- lib/Selenium/Remote/Driver.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Selenium/Remote/Driver.pm b/lib/Selenium/Remote/Driver.pm index 6b6dc4e3..bdc946d2 100644 --- a/lib/Selenium/Remote/Driver.pm +++ b/lib/Selenium/Remote/Driver.pm @@ -74,7 +74,7 @@ any HTTP website using any mainstream JavaScript-enabled browser. This module is an implementation of the client for the Remote driver that Selenium provides. You can find bindings for other languages at this location: -L +L This module sends commands directly to the Server using HTTP. Using this module together with the Selenium Server, you can automatically control any supported @@ -98,13 +98,13 @@ L. =head2 Remote Driver Response Selenium::Remote::Driver uses the -L +L And the L to communicate with the Selenium Server. If an error occurs while executing the command then the server sends back an HTTP error code with a JSON encoded reponse that indicates the precise -L. +L. The module will then croak with the error message associated with this code. If no error occurred, then the subroutine called will return the value sent back from the server (if a return value was sent).