DOC Use the latest version of selenium standalone server

This will fix a bug when the Firefox version is 23 or 24. See original bug report on https://code.google.com/p/selenium/issues/detail?id=6051
This commit is contained in:
Stig Lindqvist 2013-10-03 12:55:43 +13:00
parent b0ede964c4
commit e9144767a5
1 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ Switch to the newly created webroot, and add the SilverStripe Behat extension.
Now get the latest Selenium2 server (requires Java):
wget http://selenium.googlecode.com/files/selenium-server-standalone-2.33.0.jar
wget https://selenium.googlecode.com/files/selenium-server-standalone-2.35.0.jar
We need to generate a token so the browser and commandline calls can interact with a "shared secret":
@ -70,7 +70,7 @@ in your project root, or set is as an environment variable in your terminal sess
You can run the server locally in a separate Terminal session:
java -jar selenium-server-standalone-2.33.0.jar
java -jar selenium-server-standalone-2.35.0.jar
### Running the Tests