Test Output Index

testExecuteJavascript

Setup after run:
HtmlFixture
WARNING: no focus element
Escape HTML:onon
Javascript:onon
Display HTML:onon
Show SSL Errors:offoff
Show Javascript Errors:onon
Preserve:onon
Set Browser Versiondefault
Web Client restarted with new browser version. UserAgent = Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)
Clear
web client restarted, cookies cleared
fitnesse table before run:
HtmlFixture
http://firstthePage
Escape HTMLoff
Element Focustinput
Textinitial
FocusthePage
Element Focusbinput
ClickthePage
Element Focustinput
Textbutton clicked
fitnesse table after run:
HtmlFixture
http://first
loaded time: 0 milliseconds
thePage<?xml version="1.0" encoding="ISO-8859-1"?>
<html id="htmlTag">
  <head id="headTag">
    <title id="titleTag">
      This is the Title
    </title>
    <script>
//<![CDATA[
     function processClick()     {       document.f.t.value = "button clicked";     }   
//]]>
    </script>
  </head>
  <body id="bodyTag">
     This is the body
    <form name="f">
      <input type="button" name="b" value="Click" onclick="processClick()"/>
      <input type="text" cols="30" name="t" value="initial"/>
    </form>
  </body>
</html>
Escape HTML:offoff
Element Focust
No element with id t
Found 1 elements having attribute name with value t of type input
input
Textinitial
FocusthePage
Element Focusb
No element with id b
Found 1 elements having attribute name with value b of type input
input
Click
loaded time: 0 milliseconds
thePage This is the Title This is the body
Element Focust
No element with id t
Found 1 elements having attribute name with value t of type input
input
Textbutton clicked

testExecuteJavascriptOff

Setup after run:
HtmlFixture
WARNING: no focus element
Escape HTML:onon
Javascript:onon
Display HTML:onon
Show SSL Errors:offoff
Show Javascript Errors:onon
Preserve:onon
Set Browser Versiondefault
Web Client restarted with new browser version. UserAgent = Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)
Clear
web client restarted, cookies cleared
fitnesse table before run:
HtmlFixture
http://firstthePage
Escape HTMLoff
Javascriptoff
Element Focustinput
Textinitial
FocusthePage
Element Focusbinput
ClickthePage
Element Focustinput
Textinitial
fitnesse table after run:
HtmlFixture
http://first
loaded time: 0 milliseconds
thePage<?xml version="1.0" encoding="ISO-8859-1"?>
<html id="htmlTag">
  <head id="headTag">
    <title id="titleTag">
      This is the Title
    </title>
    <script>
//<![CDATA[
     function processClick()     {       document.f.t.value = "button clicked";     }   
//]]>
    </script>
  </head>
  <body id="bodyTag">
     This is the body
    <form name="f">
      <input type="button" name="b" value="Click" onclick="processClick()"/>
      <input type="text" cols="30" name="t" value="initial"/>
    </form>
  </body>
</html>
Escape HTML:offoff
Javascript:offoff
Element Focust
No element with id t
Found 1 elements having attribute name with value t of type input
input
Textinitial
FocusthePage
Element Focusb
No element with id b
Found 1 elements having attribute name with value b of type input
input
Click
loaded time: 0 milliseconds
thePage This is the Title This is the body
Element Focust
No element with id t
Found 1 elements having attribute name with value t of type input
input
Textinitial

testShowJavascriptException

Setup after run:
HtmlFixture
WARNING: no focus element
Escape HTML:onon
Javascript:onon
Display HTML:onon
Show SSL Errors:offoff
Show Javascript Errors:onon
Preserve:onon
Set Browser Versiondefault
Web Client restarted with new browser version. UserAgent = Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)
Clear
web client restarted, cookies cleared
fitnesse table before run:
HtmlFixture
http://secondthePage
Escape HTMLoff
Element Focustinput
Textinitial
FocusthePage
Element Focusbinput
ClickthePage
fitnesse table after run:
HtmlFixture
http://second
loaded time: 0 milliseconds
thePage<?xml version="1.0" encoding="ISO-8859-1"?>
<html id="htmlTag">
  <head id="headTag">
    <title id="titleTag">
      This is the Title
    </title>
    <script>
//<![CDATA[
     function processClick()     {       document.f.doesnotexist.value = "button clicked";     }   
//]]>
    </script>
  </head>
  <body id="bodyTag">
     This is the body
    <form name="f">
      <input type="button" name="b" value="Click" onclick="processClick()"/>
      <input type="text" cols="30" name="t" value="initial"/>
    </form>
  </body>
</html>
Escape HTML:offoff
Element Focust
No element with id t
Found 1 elements having attribute name with value t of type input
input
Textinitial
FocusthePage
Element Focusb
No element with id b
Found 1 elements having attribute name with value b of type input
input
Click
======= EXCEPTION START ======== EcmaError: lineNumber=[1] column=[0] lineSource=[function () {] name=[TypeError] sourceName=[script in http://second from (1, 100) to (0, 0)] message=[TypeError: Cannot set property "value" of undefined to "button clicked" (script in http://second from (1, 100) to (0, 0)#1)] com.gargoylesoftware.htmlunit.ScriptException: TypeError: Cannot set property "value" of undefined to "button clicked" (script in http://second from (1, 100) to (0, 0)#1) at com.gargoylesoftware.htmlunit.javascript.JavaScriptEngine$HtmlUnitContextAction.run(JavaScriptEngine.java:553) at org.mozilla.javascript.Context.call(Context.java:502) at org.mozilla.javascript.ContextFactory.call(ContextFactory.java:511) at com.gargoylesoftware.htmlunit.javascript.JavaScriptEngine.callFunction(JavaScriptEngine.java:468) at com.gargoylesoftware.htmlunit.html.HtmlPage.executeJavaScriptFunctionIfPossible(HtmlPage.java:970) at com.gargoylesoftware.htmlunit.javascript.host.EventListenersContainer.executeEventHandler(EventListenersContainer.java:166) at com.gargoylesoftware.htmlunit.javascript.host.EventListenersContainer.executeBubblingListeners(EventListenersContainer.java:179) at com.gargoylesoftware.htmlunit.javascript.host.Node.fireEvent(Node.java:568) at com.gargoylesoftware.htmlunit.html.HtmlElement$2.run(HtmlElement.java:1202) at org.mozilla.javascript.Context.call(Context.java:502) at org.mozilla.javascript.ContextFactory.call(ContextFactory.java:511) at com.gargoylesoftware.htmlunit.html.HtmlElement.fireEvent(HtmlElement.java:1206) at com.gargoylesoftware.htmlunit.html.ClickableElement.click(ClickableElement.java:143) at com.gargoylesoftware.htmlunit.html.ClickableElement.click(ClickableElement.java:116) at com.gargoylesoftware.htmlunit.html.ClickableElement.click(ClickableElement.java:95) at com.jbergin.HtmlFixture.cmd_submit(HtmlFixture.java:1832) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at com.jbergin.HtmlFixture.doRow(HtmlFixture.java:298) at fit.Fixture.doRows(Fixture.java:165) at com.jbergin.HtmlFixture.doTable(HtmlFixture.java:259) at com.jbergin.HtmlFixtureTestCase.prepareTest(HtmlFixtureTestCase.java:334) at com.jbergin.JavascriptTest.testShowJavascriptException(JavascriptTest.java:162) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at junit.framework.TestCase.runTest(TestCase.java:168) at junit.framework.TestCase.runBare(TestCase.java:134) at junit.framework.TestResult$1.protect(TestResult.java:110) at junit.framework.TestResult.runProtected(TestResult.java:128) at junit.framework.TestResult.run(TestResult.java:113) at junit.framework.TestCase.run(TestCase.java:124) at junit.framework.TestSuite.runTest(TestSuite.java:232) at junit.framework.TestSuite.run(TestSuite.java:227) at org.junit.internal.runners.JUnit38ClassRunner.run(JUnit38ClassRunner.java:81) at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:62) at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:138) at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:125) at org.apache.maven.surefire.Surefire.run(Surefire.java:132) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:290) at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:818) Caused by: org.mozilla.javascript.EcmaError: TypeError: Cannot set property "value" of undefined to "button clicked" (script in http://second from (1, 100) to (0, 0)#1) at org.mozilla.javascript.ScriptRuntime.constructError(ScriptRuntime.java:3558) at org.mozilla.javascript.ScriptRuntime.constructError(ScriptRuntime.java:3536) at org.mozilla.javascript.ScriptRuntime.typeError(ScriptRuntime.java:3564) at org.mozilla.javascript.ScriptRuntime.typeError3(ScriptRuntime.java:3590) at org.mozilla.javascript.ScriptRuntime.undefWriteError(ScriptRuntime.java:3612) at org.mozilla.javascript.ScriptRuntime.setObjectProp(ScriptRuntime.java:1506) at org.mozilla.javascript.Interpreter.interpretLoop(Interpreter.java:3063) at org.mozilla.javascript.Interpreter.interpret(Interpreter.java:2484) at org.mozilla.javascript.InterpretedFunction.call(InterpretedFunction.java:164) at org.mozilla.javascript.ContextFactory.doTopCall(ContextFactory.java:401) at com.gargoylesoftware.htmlunit.javascript.HtmlUnitContextFactory.doTopCall(HtmlUnitContextFactory.java:192) at org.mozilla.javascript.ScriptRuntime.doTopCall(ScriptRuntime.java:3004) at org.mozilla.javascript.InterpretedFunction.call(InterpretedFunction.java:162) at com.gargoylesoftware.htmlunit.javascript.host.EventHandler.call(EventHandler.java:100) at com.gargoylesoftware.htmlunit.javascript.JavaScriptEngine.callFunction(JavaScriptEngine.java:496) at com.gargoylesoftware.htmlunit.javascript.JavaScriptEngine$6.doRun(JavaScriptEngine.java:461) at com.gargoylesoftware.htmlunit.javascript.JavaScriptEngine$HtmlUnitContextAction.run(JavaScriptEngine.java:549) ... 47 more Enclosed exception: org.mozilla.javascript.EcmaError: TypeError: Cannot set property "value" of undefined to "button clicked" (script in http://second from (1, 100) to (0, 0)#1) at org.mozilla.javascript.ScriptRuntime.constructError(ScriptRuntime.java:3558) at org.mozilla.javascript.ScriptRuntime.constructError(ScriptRuntime.java:3536) at org.mozilla.javascript.ScriptRuntime.typeError(ScriptRuntime.java:3564) at org.mozilla.javascript.ScriptRuntime.typeError3(ScriptRuntime.java:3590) at org.mozilla.javascript.ScriptRuntime.undefWriteError(ScriptRuntime.java:3612) at org.mozilla.javascript.ScriptRuntime.setObjectProp(ScriptRuntime.java:1506) at org.mozilla.javascript.Interpreter.interpretLoop(Interpreter.java:3063) at script.processClick(script in http://second from (1, 100) to (0, 0):1) at script(onclick event for HtmlButtonInput[]:1) at org.mozilla.javascript.Interpreter.interpret(Interpreter.java:2484) at org.mozilla.javascript.InterpretedFunction.call(InterpretedFunction.java:164) at org.mozilla.javascript.ContextFactory.doTopCall(ContextFactory.java:401) at com.gargoylesoftware.htmlunit.javascript.HtmlUnitContextFactory.doTopCall(HtmlUnitContextFactory.java:192) at org.mozilla.javascript.ScriptRuntime.doTopCall(ScriptRuntime.java:3004) at org.mozilla.javascript.InterpretedFunction.call(InterpretedFunction.java:162) at com.gargoylesoftware.htmlunit.javascript.host.EventHandler.call(EventHandler.java:100) at com.gargoylesoftware.htmlunit.javascript.JavaScriptEngine.callFunction(JavaScriptEngine.java:496) at com.gargoylesoftware.htmlunit.javascript.JavaScriptEngine$6.doRun(JavaScriptEngine.java:461) at com.gargoylesoftware.htmlunit.javascript.JavaScriptEngine$HtmlUnitContextAction.run(JavaScriptEngine.java:549) at org.mozilla.javascript.Context.call(Context.java:502) at org.mozilla.javascript.ContextFactory.call(ContextFactory.java:511) at com.gargoylesoftware.htmlunit.javascript.JavaScriptEngine.callFunction(JavaScriptEngine.java:468) at com.gargoylesoftware.htmlunit.html.HtmlPage.executeJavaScriptFunctionIfPossible(HtmlPage.java:970) at com.gargoylesoftware.htmlunit.javascript.host.EventListenersContainer.executeEventHandler(EventListenersContainer.java:166) at com.gargoylesoftware.htmlunit.javascript.host.EventListenersContainer.executeBubblingListeners(EventListenersContainer.java:179) at com.gargoylesoftware.htmlunit.javascript.host.Node.fireEvent(Node.java:568) at com.gargoylesoftware.htmlunit.html.HtmlElement$2.run(HtmlElement.java:1202) at org.mozilla.javascript.Context.call(Context.java:502) at org.mozilla.javascript.ContextFactory.call(ContextFactory.java:511) at com.gargoylesoftware.htmlunit.html.HtmlElement.fireEvent(HtmlElement.java:1206) at com.gargoylesoftware.htmlunit.html.ClickableElement.click(ClickableElement.java:143) at com.gargoylesoftware.htmlunit.html.ClickableElement.click(ClickableElement.java:116) at com.gargoylesoftware.htmlunit.html.ClickableElement.click(ClickableElement.java:95) at com.jbergin.HtmlFixture.cmd_submit(HtmlFixture.java:1832) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at com.jbergin.HtmlFixture.doRow(HtmlFixture.java:298) at fit.Fixture.doRows(Fixture.java:165) at com.jbergin.HtmlFixture.doTable(HtmlFixture.java:259) at com.jbergin.HtmlFixtureTestCase.prepareTest(HtmlFixtureTestCase.java:334) at com.jbergin.JavascriptTest.testShowJavascriptException(JavascriptTest.java:162) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at junit.framework.TestCase.runTest(TestCase.java:168) at junit.framework.TestCase.runBare(TestCase.java:134) at junit.framework.TestResult$1.protect(TestResult.java:110) at junit.framework.TestResult.runProtected(TestResult.java:128) at junit.framework.TestResult.run(TestResult.java:113) at junit.framework.TestCase.run(TestCase.java:124) at junit.framework.TestSuite.runTest(TestSuite.java:232) at junit.framework.TestSuite.run(TestSuite.java:227) at org.junit.internal.runners.JUnit38ClassRunner.run(JUnit38ClassRunner.java:81) at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:62) at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:138) at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:125) at org.apache.maven.surefire.Surefire.run(Surefire.java:132) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:290) at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:818) == CALLING JAVASCRIPT == function () { [native code, arity=0] } ======= EXCEPTION END ========
thePage

testIgnoreJavascriptException

Setup after run:
HtmlFixture
WARNING: no focus element
Escape HTML:onon
Javascript:onon
Display HTML:onon
Show SSL Errors:offoff
Show Javascript Errors:onon
Preserve:onon
Set Browser Versiondefault
Web Client restarted with new browser version. UserAgent = Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)
Clear
web client restarted, cookies cleared
fitnesse table before run:
HtmlFixture
http://secondthePage
Escape HTMLoff
Show Javascript Errorsoff
Element Focustinput
Textinitial
FocusthePage
Element Focusbinput
ClickthePage
Element Focustinput
Textinitial
fitnesse table after run:
HtmlFixture
http://second
loaded time: 0 milliseconds
thePage<?xml version="1.0" encoding="ISO-8859-1"?>
<html id="htmlTag">
  <head id="headTag">
    <title id="titleTag">
      This is the Title
    </title>
    <script>
//<![CDATA[
     function processClick()     {       document.f.doesnotexist.value = "button clicked";     }   
//]]>
    </script>
  </head>
  <body id="bodyTag">
     This is the body
    <form name="f">
      <input type="button" name="b" value="Click" onclick="processClick()"/>
      <input type="text" cols="30" name="t" value="initial"/>
    </form>
  </body>
</html>
Escape HTML:offoff
Show Javascript Errors:offoff
Element Focust
No element with id t
Found 1 elements having attribute name with value t of type input
input
Textinitial
FocusthePage
Element Focusb
No element with id b
Found 1 elements having attribute name with value b of type input
input
Click
loaded time: 0 milliseconds
thePage This is the Title This is the body
Element Focust
No element with id t
Found 1 elements having attribute name with value t of type input
input
Textinitial

testJavascriptMessage

Setup after run:
HtmlFixture
WARNING: no focus element
Escape HTML:onon
Javascript:onon
Display HTML:onon
Show SSL Errors:offoff
Show Javascript Errors:onon
Preserve:onon
Set Browser Versiondefault
Web Client restarted with new browser version. UserAgent = Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)
Clear
web client restarted, cookies cleared
fitnesse table before run:
HtmlFixture
http://thirdthePage
Escape HTMLoff
FocusthePage
Element Focusbinput
ClickthePage
Javascript Messagebutton clicked
fitnesse table after run:
HtmlFixture
http://third
loaded time: 0 milliseconds
thePage<?xml version="1.0" encoding="ISO-8859-1"?>
<html id="htmlTag">
  <head id="headTag">
    <title id="titleTag">
      This is the Title
    </title>
    <script>
//<![CDATA[
     function processClick()     {       alert("button clicked");     }   
//]]>
    </script>
  </head>
  <body id="bodyTag">
     This is the body
    <form name="f">
      <input type="button" name="b" value="Click" onclick="processClick()"/>
    </form>
  </body>
</html>
Escape HTML:offoff
FocusthePage
Element Focusb
No element with id b
Found 1 elements having attribute name with value b of type input
input
Click
loaded time: 0 milliseconds
thePage This is the Title This is the body
Javascript Messagebutton clicked

testJavascriptMessageFail

Setup after run:
HtmlFixture
WARNING: no focus element
Escape HTML:onon
Javascript:onon
Display HTML:onon
Show SSL Errors:offoff
Show Javascript Errors:onon
Preserve:onon
Set Browser Versiondefault
Web Client restarted with new browser version. UserAgent = Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)
Clear
web client restarted, cookies cleared
fitnesse table before run:
HtmlFixture
http://thirdthePage
Escape HTMLoff
FocusthePage
Element Focusbinput
ClickthePage
Javascript Messagefoo
fitnesse table after run:
HtmlFixture
http://third
loaded time: 0 milliseconds
thePage<?xml version="1.0" encoding="ISO-8859-1"?>
<html id="htmlTag">
  <head id="headTag">
    <title id="titleTag">
      This is the Title
    </title>
    <script>
//<![CDATA[
     function processClick()     {       alert("button clicked");     }   
//]]>
    </script>
  </head>
  <body id="bodyTag">
     This is the body
    <form name="f">
      <input type="button" name="b" value="Click" onclick="processClick()"/>
    </form>
  </body>
</html>
Escape HTML:offoff
FocusthePage
Element Focusb
No element with id b
Found 1 elements having attribute name with value b of type input
input
Click
loaded time: 0 milliseconds
thePage This is the Title This is the body
Javascript Messagefoo expected
button clicked actual

testJavascriptMessageFail2

Setup after run:
HtmlFixture
WARNING: no focus element
Escape HTML:onon
Javascript:onon
Display HTML:onon
Show SSL Errors:offoff
Show Javascript Errors:onon
Preserve:onon
Set Browser Versiondefault
Web Client restarted with new browser version. UserAgent = Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)
Clear
web client restarted, cookies cleared
fitnesse table before run:
HtmlFixture
http://fourththePage
Escape HTMLoff
FocusthePage
Element Focusbinput
ClickthePage
Javascript Messagefoo
fitnesse table after run:
HtmlFixture
http://fourth
loaded time: 0 milliseconds
thePage<?xml version="1.0" encoding="ISO-8859-1"?>
<html id="htmlTag">
  <head id="headTag">
    <title id="titleTag">
      This is the Title
    </title>
    <script>
//<![CDATA[
     function processClick()     {       return;     }   
//]]>
    </script>
  </head>
  <body id="bodyTag">
     This is the body
    <form name="f">
      <input type="button" name="b" value="Click" onclick="processClick()"/>
    </form>
  </body>
</html>
Escape HTML:offoff
FocusthePage
Element Focusb
No element with id b
Found 1 elements having attribute name with value b of type input
input
Click
loaded time: 0 milliseconds
thePage This is the Title This is the body
Javascript Messagefoo expected
actual

testJavascriptMessageBlank

Setup after run:
HtmlFixture
WARNING: no focus element
Escape HTML:onon
Javascript:onon
Display HTML:onon
Show SSL Errors:offoff
Show Javascript Errors:onon
Preserve:onon
Set Browser Versiondefault
Web Client restarted with new browser version. UserAgent = Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)
Clear
web client restarted, cookies cleared
fitnesse table before run:
HtmlFixture
http://fourththePage
Escape HTMLoff
FocusthePage
Element Focusbinput
ClickthePage
Javascript Message$blank$
fitnesse table after run:
HtmlFixture
http://fourth
loaded time: 0 milliseconds
thePage<?xml version="1.0" encoding="ISO-8859-1"?>
<html id="htmlTag">
  <head id="headTag">
    <title id="titleTag">
      This is the Title
    </title>
    <script>
//<![CDATA[
     function processClick()     {       return;     }   
//]]>
    </script>
  </head>
  <body id="bodyTag">
     This is the body
    <form name="f">
      <input type="button" name="b" value="Click" onclick="processClick()"/>
    </form>
  </body>
</html>
Escape HTML:offoff
FocusthePage
Element Focusb
No element with id b
Found 1 elements having attribute name with value b of type input
input
Click
loaded time: 0 milliseconds
thePage This is the Title This is the body
Javascript Message$blank$

testJavascriptMessageBlankFail

Setup after run:
HtmlFixture
WARNING: no focus element
Escape HTML:onon
Javascript:onon
Display HTML:onon
Show SSL Errors:offoff
Show Javascript Errors:onon
Preserve:onon
Set Browser Versiondefault
Web Client restarted with new browser version. UserAgent = Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)
Clear
web client restarted, cookies cleared
fitnesse table before run:
HtmlFixture
http://thirdthePage
Escape HTMLoff
FocusthePage
Element Focusbinput
ClickthePage
Javascript Message$blank$
fitnesse table after run:
HtmlFixture
http://third
loaded time: 0 milliseconds
thePage<?xml version="1.0" encoding="ISO-8859-1"?>
<html id="htmlTag">
  <head id="headTag">
    <title id="titleTag">
      This is the Title
    </title>
    <script>
//<![CDATA[
     function processClick()     {       alert("button clicked");     }   
//]]>
    </script>
  </head>
  <body id="bodyTag">
     This is the body
    <form name="f">
      <input type="button" name="b" value="Click" onclick="processClick()"/>
    </form>
  </body>
</html>
Escape HTML:offoff
FocusthePage
Element Focusb
No element with id b
Found 1 elements having attribute name with value b of type input
input
Click
loaded time: 0 milliseconds
thePage This is the Title This is the body
Javascript Message$blank$ expected
button clicked actual