Skip to content

Commit ef75b51

Browse files
committed
Updated the Selenium Server to version 2.2.0 and updated the Firefox plugin to work with Firefox 5
1 parent 78a2df0 commit ef75b51

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

16.5 MB
Binary file not shown.

formats/cfml-formatters-1.4.xpi

4.92 KB
Binary file not shown.

formats/chrome/install.rdf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Description about="urn:mozilla:install-manifest">
55
<em:id>[email protected]</em:id>
66
<em:name>Selenium IDE: CFML Formatter</em:name>
7-
<em:version>1.3</em:version>
7+
<em:version>1.4</em:version>
88
<em:creator>Bob Silverberg</em:creator>
99
<em:description>A plugin to add CFML (ColdFusion) formatters to Selenium-IDE</em:description>
1010
<em:type>2</em:type> <!-- type extension -->
@@ -14,15 +14,15 @@
1414
<Description>
1515
<em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id> <!-- firefox -->
1616
<em:minVersion>1.5</em:minVersion>
17-
<em:maxVersion>4.*</em:maxVersion>
17+
<em:maxVersion>5.0.*</em:maxVersion>
1818
</Description>
1919
</em:targetApplication>
2020

2121
<em:requires>
2222
<Description>
2323
<em:id>{a6fd85ed-e919-4a43-a5af-8da18bda539f}</em:id>
2424
<em:minVersion>1.0.5-SNAPSHOT</em:minVersion>
25-
<em:maxVersion>1.*</em:maxVersion>
25+
<em:maxVersion>2.*</em:maxVersion>
2626
</Description>
2727
</em:requires>
2828
</Description>

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ CFSelenium is a ColdFusion Component (CFC) which provides a native client librar
1414

1515
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:
1616

17-
java -jar selenium-server-standalone-2.0b2.jar
17+
java -jar selenium-server-standalone-2.2.0.jar
1818

1919
Create an instance of selenium.cfc.
2020

selenium.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818

1919
public any function init (string host = "localhost", numeric port = 4444,
20-
numeric executionDelay = 200, string seleniumJarPath = "/cfselenium/Selenium-RC/selenium-server-standalone-2.0b2.jar", boolean verbose = false, string seleniumServerArguments = "",
20+
numeric executionDelay = 200, string seleniumJarPath = "/cfselenium/Selenium-RC/selenium-server-standalone-2.2.0.jar", boolean verbose = false, string seleniumServerArguments = "",
2121
numeric waitTimeout = 30000) {
2222

2323
structAppend(variables,arguments,true);

selenium_tags.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<cfargument required="false" type="string" name="host" default="localhost" />
3030
<cfargument required="false" type="numeric" name="port" default="4444" />
3131
<cfargument required="false" type="numeric" name="executionDelay" default="200" />
32-
<cfargument required="false" type="string" name="seleniumJarPath" default="/cfselenium/Selenium-RC/selenium-server-standalone-2.0b2.jar" />
32+
<cfargument required="false" type="string" name="seleniumJarPath" default="/cfselenium/Selenium-RC/selenium-server-standalone-2.2.0.jar" />
3333
<cfargument required="false" type="boolean" name="verbose" default="false" />
3434
<cfargument required="false" type="string" name="seleniumServerArguments" default="" />
3535
<cfargument required="false" type="numeric" name="waitTimeout" default="30000" />

server.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ PROPS: this is adapted from Joe Rinehart and Brian Kotek's work. Thanks, gents.
66
<cffunction name="init" output="false" access="public" returntype="any" hint="">
77
<cfargument name="selenium" type="any" required="true" />
88
<cfargument name="executionDelay" type="numeric" required="false" default="200"/>
9-
<cfargument name="seleniumJarPath" type="string" required="false" default="/cfselenium/Selenium-RC/selenium-server-standalone-2.0b2.jar"/>
9+
<cfargument name="seleniumJarPath" type="string" required="false" default="/cfselenium/Selenium-RC/selenium-server-standalone-2.2.0.jar"/>
1010
<cfargument name="verbose" type="boolean" required="false" default="false"/>
1111
<cfargument name="seleniumServerArguments" type="string" required="false" default=""/>
1212

0 commit comments

Comments
 (0)