Hi, i'm trying to make a test in web aplication. When I try to navigate trough a https page I've got this exception:
What can i do??
org.mozilla._javascript_.EcmaError: ReferenceError: "is_browser_supported" is not defined. (httpunit#45)
at org.mozilla._javascript_.ScriptRuntime.constructError(ScriptRuntime.java:3226)
at org.mozilla._javascript_.ScriptRuntime.constructError(ScriptRuntime.java:3216)
at org.mozilla._javascript_.ScriptRuntime.notFoundError(ScriptRuntime.java:3289)
at org.mozilla._javascript_.ScriptRuntime.nameOrFunction(ScriptRuntime.java:1633)
at org.mozilla._javascript_.ScriptRuntime.name(ScriptRuntime.java:1572)
at org.mozilla._javascript_.gen.c2._c5(httpunit:45)
at org.mozilla._javascript_.gen.c2.call(httpunit)
at org.mozilla._javascript_.optimizer.OptRuntime.callName0(OptRuntime.java:106)
at org.mozilla._javascript_.gen.c5._c0(httpunit:0)
at org.mozilla._javascript_.gen.c5.call(httpunit)
at org.mozilla._javascript_.ContextFactory.doTopCall(ContextFactory.java:337)
at org.mozilla._javascript_.ScriptRuntime.doTopCall(ScriptRuntime.java:2755)
at org.mozilla._javascript_.gen.c5.call(httpunit)
at org.mozilla._javascript_.gen.c5.exec(httpunit)
at org.mozilla._javascript_.Context.evaluateString(Context.java:1132)
at com.meterware.httpunit._javascript_._javascript_$_javascript_Engine.executeScript(_javascript_.java:122)
at com.meterware.httpunit.scripting.ScriptableDelegate.runScript(ScriptableDelegate.java:64)
at com.meterware.httpunit.parsing.ScriptFilter.getTranslatedScript(ScriptFilter.java:150)
at com.meterware.httpunit.parsing.ScriptFilter.endElement(ScriptFilter.java:131)
at org.cyberneko.html.HTMLTagBalancer.callEndElement(Unknown Source)
at org.cyberneko.html.HTMLTagBalancer.endElement(Unknown Source)
at org.cyberneko.html.HTMLScanner$SpecialScanner.scan(Unknown Source)
at org.cyberneko.html.HTMLScanner.scanDocument(Unknown Source)
at org.cyberneko.html.HTMLConfiguration.parse(Unknown Source)
at org.cyberneko.html.HTMLConfiguration.parse(Unknown Source)
at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)
at com.meterware.httpunit.parsing.NekoHTMLParser.parse(NekoHTMLParser.java:41)
at com.meterware.httpunit.HTMLPage.parse(HTMLPage.java:244)
at com.meterware.httpunit.WebResponse.getReceivedPage(WebResponse.java:1014)
at com.meterware.httpunit.WebResponse$Scriptable.load(WebResponse.java:611)
at com.meterware.httpunit._javascript_._javascript_$Window.initialize(_javascript_.java:424)
at com.meterware.httpunit._javascript_._javascript_.run(_javascript_.java:80)
at com.meterware.httpunit._javascript_._javascript_EngineFactory.associate(_javascript_EngineFactory.java:46)
at com.meterware.httpunit.RequestContext.runScripts(RequestContext.java:44)
at com.meterware.httpunit.WebWindow.getResponse(WebWindow.java:119)
at com.meterware.httpunit.WebWindow.updateWindow(WebWindow.java:141)
at com.meterware.httpunit.WebWindow.getSubframeResponse(WebWindow.java:127)
at com.meterware.httpunit.WebWindow.getResponse(WebWindow.java:118)
at com.meterware.httpunit.WebWindow.updateWindow(WebWindow.java:141)
at com.meterware.httpunit.WebWindow.getSubframeResponse(WebWindow.java:127)
at com.meterware.httpunit.WebWindow.getResponse(WebWindow.java:118)
at com.meterware.httpunit.WebWindow.updateWindow(WebWindow.java:141)
at com.meterware.httpunit.WebWindow.getSubframeResponse(WebWindow.java:127)
at com.meterware.httpunit.WebWindow.getResponse(WebWindow.java:118)
at com.meterware.httpunit.WebClient.getResponse(WebClient.java:112)
at net.sourceforge.jwebunit.HttpUnitDialog.<init>(HttpUnitDialog.java:48)
at net.sourceforge.jwebunit.WebTester.beginAt(WebTester.java:55)
at net.sourceforge.jwebunit.WebTestCase.beginAt(WebTestCase.java:46)
at Prueba2.testMainPageLinks(Prueba2.java:26)
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:324)
at junit.framework.TestCase.runTest(TestCase.java:154)
at junit.framework.TestCase.runBare(TestCase.java:127)
at junit.framework.TestResult$1.protect(TestResult.java:106)
at junit.framework.TestResult.runProtected(TestResult.java:124)
at junit.framework.TestResult.run(TestResult.java:109)
at junit.framework.TestCase.run(TestCase.java:118)
at junit.framework.TestSuite.runTest(TestSuite.java:208)
at junit.framework.TestSuite.run(TestSuite.java:203)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:478)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:344)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:196)
Can anybody help me??
