Skip to content

Commit

Permalink
Merge pull request teamcfadvance#24 from gregmoser/required-updates
Browse files Browse the repository at this point in the history
Updated Selenium-RC Server
  • Loading branch information
ddspringle committed Mar 16, 2015
2 parents 24ece92 + a043bc6 commit 3dc9fe7
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
Binary file not shown.
2 changes: 1 addition & 1 deletion readme.md
Expand Up @@ -14,7 +14,7 @@ CFSelenium is a ColdFusion Component (CFC) which provides a native client librar

Optionally, start the Selenium-RC server. Selenium.cfc will automatically start the Selenium-RC server for you in the background if it isn't already started (note this does not work on CF7). To start it manually, the command is similar to this:

java -jar selenium-server-standalone-2.42.1.jar
java -jar selenium-server-standalone-2.42.2.jar

Create an instance of selenium.cfc.

Expand Down
2 changes: 1 addition & 1 deletion selenium.cfc
Expand Up @@ -17,7 +17,7 @@
*/

public any function init (string host = "localhost", numeric port = 4444,
numeric executionDelay = 200, string seleniumJarPath = "/cfselenium/Selenium-RC/selenium-server-standalone-2.42.1.jar", boolean verbose = false, string seleniumServerArguments = "",
numeric executionDelay = 200, string seleniumJarPath = "/cfselenium/Selenium-RC/selenium-server-standalone-2.42.2.jar", boolean verbose = false, string seleniumServerArguments = "",
numeric waitTimeout = 30000) {

structAppend(variables,arguments,true);
Expand Down
2 changes: 1 addition & 1 deletion selenium_tags.cfc
Expand Up @@ -29,7 +29,7 @@
<cfargument required="false" type="string" name="host" default="localhost" />
<cfargument required="false" type="numeric" name="port" default="4444" />
<cfargument required="false" type="numeric" name="executionDelay" default="200" />
<cfargument required="false" type="string" name="seleniumJarPath" default="/cfselenium/Selenium-RC/selenium-server-standalone-2.42.1.jar" />
<cfargument required="false" type="string" name="seleniumJarPath" default="/cfselenium/Selenium-RC/selenium-server-standalone-2.42.2.jar" />
<cfargument required="false" type="boolean" name="verbose" default="false" />
<cfargument required="false" type="string" name="seleniumServerArguments" default="" />
<cfargument required="false" type="numeric" name="waitTimeout" default="30000" />
Expand Down
2 changes: 1 addition & 1 deletion server.cfc
Expand Up @@ -5,7 +5,7 @@
<cffunction name="init" output="false" access="public" returntype="any" hint="">
<cfargument name="selenium" type="any" required="true">
<cfargument name="executionDelay" type="numeric" required="false" default="200">
<cfargument name="seleniumJarPath" type="string" required="false" default="/cfselenium/Selenium-RC/selenium-server-standalone-2.42.1.jar">
<cfargument name="seleniumJarPath" type="string" required="false" default="/cfselenium/Selenium-RC/selenium-server-standalone-2.42.2.jar">
<cfargument name="verbose" type="boolean" required="false" default="false">
<cfargument name="seleniumServerArguments" type="string" required="false" default="">

Expand Down

0 comments on commit 3dc9fe7

Please sign in to comment.