diff --git a/README.md b/README.md index c5c19a2..6a54ab9 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,14 @@ Selenium Changelog: [https://github.com/SeleniumHQ/selenium/blob/master/java/CHA Original jar files and checksums: [http://selenium-release.storage.googleapis.com/index.html](http://selenium-release.storage.googleapis.com/index.html) +## Webdriver + +* Google Chrome version 2.21 +* Internet Explorer 32-bit version 2.52.1 +* Internet explorer 64-bit version 2.52.1 +* Microsoft Edge version 2.0 +* Microsoft Edge Insiders version 3.14342 + ## Installation #### Inside your composer-powered project diff --git a/bin/webdrivers/chrome/README.md b/bin/webdrivers/chrome/README.md new file mode 100644 index 0000000..b24b277 --- /dev/null +++ b/bin/webdrivers/chrome/README.md @@ -0,0 +1,36 @@ +# Chrome webdriver + +Chrome webdriver for Selenium Server Standalone, the browser automation framework. + +## Version +Release numbers are synchronised with the Selenium versions. +Version of this release is *v2.21.0* + +## Installation + +#### Inside your robofile + +For Windows: +``` +-Dwebdriver.chrome.driver=.\\vendor\\joomla-projects\\selenium-server-standalone\\bin\\webdrivers\chrome\chromedriver.exe +``` + +For Mac: +``` +-Dwebdriver.chrome.driver=.\\vendor\\joomla-projects\\selenium-server-standalone\\bin\\webdrivers\chrome\chromedriver_mac +``` + +For Linux: +``` +32bit +-Dwebdriver.chrome.driver=.\\vendor\\joomla-projects\\selenium-server-standalone\\bin\\webdrivers\chrome\chromedriver_linux_32 +``` +``` +64bit +-Dwebdriver.chrome.driver=.\\vendor\\joomla-projects\\selenium-server-standalone\\bin\\webdrivers\chrome\chromedriver_linux_64 +``` + +## Acknowledgements +This project was forked from the original [https://github.com/sveneisenschmidt/selenium-server-standalone](https://github.com/sveneisenschmidt/selenium-server-standalone) + +Thanks to the [Selenium Project](http://docs.seleniumhq.org/) diff --git a/bin/webdrivers/chrome/chromedriver.exe b/bin/webdrivers/chrome/chromedriver.exe new file mode 100644 index 0000000..1f8a63b Binary files /dev/null and b/bin/webdrivers/chrome/chromedriver.exe differ diff --git a/bin/webdrivers/chrome/chromedriver_linux_32 b/bin/webdrivers/chrome/chromedriver_linux_32 new file mode 100644 index 0000000..b74efc1 Binary files /dev/null and b/bin/webdrivers/chrome/chromedriver_linux_32 differ diff --git a/bin/webdrivers/chrome/chromedriver_linux_64 b/bin/webdrivers/chrome/chromedriver_linux_64 new file mode 100644 index 0000000..ccb5872 Binary files /dev/null and b/bin/webdrivers/chrome/chromedriver_linux_64 differ diff --git a/bin/webdrivers/chrome/chromedriver_mac b/bin/webdrivers/chrome/chromedriver_mac new file mode 100644 index 0000000..4fed833 Binary files /dev/null and b/bin/webdrivers/chrome/chromedriver_mac differ diff --git a/bin/webdrivers/edge-insiders/MicrosoftWebDriver.exe b/bin/webdrivers/edge-insiders/MicrosoftWebDriver.exe new file mode 100644 index 0000000..86d7b04 Binary files /dev/null and b/bin/webdrivers/edge-insiders/MicrosoftWebDriver.exe differ diff --git a/bin/webdrivers/edge-insiders/README.md b/bin/webdrivers/edge-insiders/README.md new file mode 100644 index 0000000..1e1b4c9 --- /dev/null +++ b/bin/webdrivers/edge-insiders/README.md @@ -0,0 +1,19 @@ +# Edge webdriver + +Edge webdriver for Selenium Server Standalone, the browser automation framework. + +## Version +Release numbers are synchronised with the Selenium versions. +Version of this release is *v3.14342* + +## Installation + +#### Inside your robofile +``` +-Dwebdriver.edge.driver=.\\vendor\\joomla-projects\\selenium-server-standalone\\bin\\webdrivers\edge-insiders\MicrosoftWebDriver.exe +``` + +## Acknowledgements +This project was forked from the original [https://github.com/sveneisenschmidt/selenium-server-standalone](https://github.com/sveneisenschmidt/selenium-server-standalone) + +Thanks to the [Selenium Project](http://docs.seleniumhq.org/) diff --git a/bin/webdrivers/edge/MicrosoftWebDriver.exe b/bin/webdrivers/edge/MicrosoftWebDriver.exe new file mode 100644 index 0000000..4b0c2e4 Binary files /dev/null and b/bin/webdrivers/edge/MicrosoftWebDriver.exe differ diff --git a/bin/webdrivers/edge/README.md b/bin/webdrivers/edge/README.md new file mode 100644 index 0000000..ba17f17 --- /dev/null +++ b/bin/webdrivers/edge/README.md @@ -0,0 +1,19 @@ +# Edge webdriver + +Edge webdriver for Selenium Server Standalone, the browser automation framework. + +## Version +Release numbers are synchronised with the Selenium versions. +Version of this release is *v2.0 Fall update* + +## Installation + +#### Inside your robofile +``` +-Dwebdriver.edge.driver=.\\vendor\\joomla-projects\\selenium-server-standalone\\bin\\webdrivers\edge\MicrosoftWebDriver.exe +``` + +## Acknowledgements +This project was forked from the original [https://github.com/sveneisenschmidt/selenium-server-standalone](https://github.com/sveneisenschmidt/selenium-server-standalone) + +Thanks to the [Selenium Project](http://docs.seleniumhq.org/) diff --git a/bin/webdrivers/internet-explorer32/IEDriverServer.exe b/bin/webdrivers/internet-explorer32/IEDriverServer.exe new file mode 100644 index 0000000..c2a50cf Binary files /dev/null and b/bin/webdrivers/internet-explorer32/IEDriverServer.exe differ diff --git a/bin/webdrivers/internet-explorer32/README.md b/bin/webdrivers/internet-explorer32/README.md new file mode 100644 index 0000000..a7b2344 --- /dev/null +++ b/bin/webdrivers/internet-explorer32/README.md @@ -0,0 +1,19 @@ +# Internet Explorer webdriver + +Internet explorer 32bit webdriver for Selenium Server Standalone, the browser automation framework. + +## Version +Release numbers are synchronised with the Selenium versions. +Version of this release is *v2.52.1* + +## Installation + +#### Inside your robofile +``` +-Dwebdriver.ie.driver=.\\vendor\\joomla-projects\\selenium-server-standalone\\bin\\webdrivers\internet-explorer32\MicrosoftWebDriver.exe +``` + +## Acknowledgements +This project was forked from the original [https://github.com/sveneisenschmidt/selenium-server-standalone](https://github.com/sveneisenschmidt/selenium-server-standalone) + +Thanks to the [Selenium Project](http://docs.seleniumhq.org/) diff --git a/bin/webdrivers/internet-explorer64/IEDriverServer.exe b/bin/webdrivers/internet-explorer64/IEDriverServer.exe new file mode 100644 index 0000000..40c1cce Binary files /dev/null and b/bin/webdrivers/internet-explorer64/IEDriverServer.exe differ diff --git a/bin/webdrivers/internet-explorer64/README.md b/bin/webdrivers/internet-explorer64/README.md new file mode 100644 index 0000000..55c0d5e --- /dev/null +++ b/bin/webdrivers/internet-explorer64/README.md @@ -0,0 +1,19 @@ +# Internet Explorer webdriver + +Internet explorer 64bit webdriver for Selenium Server Standalone, the browser automation framework. + +## Version +Release numbers are synchronised with the Selenium versions. +Version of this release is *v2.52.1* + +## Installation + +#### Inside your robofile +``` +-Dwebdriver.ie.driver=.\\vendor\\joomla-projects\\selenium-server-standalone\\bin\\webdrivers\internet-explorer64\MicrosoftWebDriver.exe +``` + +## Acknowledgements +This project was forked from the original [https://github.com/sveneisenschmidt/selenium-server-standalone](https://github.com/sveneisenschmidt/selenium-server-standalone) + +Thanks to the [Selenium Project](http://docs.seleniumhq.org/)