Skip to content

Commit

Permalink
version 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown committed Oct 20, 2009
1 parent 89ba161 commit 08a1d16
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
3 changes: 3 additions & 0 deletions ChangeLog.txt
@@ -1,3 +1,6 @@
1.1.2
- general fixes

1.1
- support Firefox 3.5

Expand Down
2 changes: 1 addition & 1 deletion build.xml
Expand Up @@ -30,7 +30,7 @@
<format property="today" pattern="yyyyMMdd"/>
</tstamp>
<!-- <buildnumber/> -->
<property name="versionNumber" value="1.1.1"/>
<property name="versionNumber" value="1.1.2"/>
<echo message="Extension version: ${versionNumber}"/>
<mkdir dir="${targetDir}"/>
<mkdir dir="${targetDir}/chrome"/>
Expand Down
4 changes: 3 additions & 1 deletion src/content/webtest-steps.js
Expand Up @@ -222,7 +222,9 @@ wtr_Misc.HandlerClick = function(_oEvent)
|| strType == "button" || strType == "reset"))
|| oTarget.tagName == "BUTTON")
{
myThis._getWebtestRecorder().addStep(WTR_ButtonLocator.locate(oTarget), oTarget);
if (myThis._getWebtestRecorder()) {
myThis._getWebtestRecorder().addStep(WTR_ButtonLocator.locate(oTarget), oTarget);
}
}
else
{
Expand Down
2 changes: 1 addition & 1 deletion src/install.rdf
Expand Up @@ -7,7 +7,7 @@

<em:name>iTest2/Watir Test Recorder</em:name>
<em:id>@extension.id@</em:id>
<em:version>1.1.1</em:version>
<em:version>1.1.2</em:version>
<em:type>2</em:type>
<em:description>Recording tool to help creating automated test scripts (RWebSpec and Watir) for web applications
</em:description>
Expand Down

0 comments on commit 08a1d16

Please sign in to comment.