微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

HtmlUnit属性未定义的脚本错误

我正在使用Java HtmlUnit软件包提交表单.我可以获取页面并提交表单,但是在一页上却出现ScriptException错误.消息为“无法将未定义的属性“禁用”设置为“ 0””

我认为这可能是由javascript方法引起的,该方法试图设置一个尚未在表单中声明的​​变量,但我不确定.

tempForm = MyPage.getFormByName("menu_form");
tempForm.getInputByName("userId").setValueAttribute("myusername");
HtmlPage editSubscriberPage = (HtmlPage)
tempForm.getInputByName("submit_button").click();



EcmaError: lineNumber=[824] column=[0] linesource=[null] name=[TypeError] sourceName=[script in https://labserver.comp.com/mcwebadm/cgi-bin/edit_local.pl?operation=edit&return_address=%2Fmcwebadm%2Fcgi-bin%2Fmenu.pl&selected=2322020c341b11de96c3000423d43f1d from (9,32) to (840,15)] message=[TypeError: Cannot set property "disabled" of undefined to "0" (script in https://myserver.company.com/mcwebadm/cgi-bin/edit_local.pl?operation=edit&return_address=%2Fmcwebadm%2Fcgi-bin%2Fmenu.pl&selected=22020c341b11de96c3000423d43f1d from (9,15)#824)]
com.gargoylesoftware.htmlunit.ScriptException: TypeError: Cannot set property "disabled" of undefined to "0" (script in https://labserver.comp.com/mcwebadm/cgi-bin/edit_local.pl?operation=edit&return_address=%2Fmcwebadm%2Fcgi-bin%2Fmenu.pl&selected=22020c341b11de96c3000423d43f1d from (9,15)#824)
    at com.gargoylesoftware.htmlunit.javascript.JavaScriptEngine$HtmlUnitContextAction.run(JavaScriptEngine.java:534)
    at net.sourceforge.htmlunit.corejs.javascript.Context.call(Context.java:515)
    at net.sourceforge.htmlunit.corejs.javascript.ContextFactory.call(ContextFactory.java:507)
    at com.gargoylesoftware.htmlunit.javascript.JavaScriptEngine.callFunction(JavaScriptEngine.java:464)
    at com.gargoylesoftware.htmlunit.html.HtmlPage.executeJavaScriptFunctionIfPossible(HtmlPage.java:992)
    at com.gargoylesoftware.htmlunit.javascript.host.EventListenersContainer.executeEventHandler(EventListenersContainer.java:164)
    at com.gargoylesoftware.htmlunit.javascript.host.EventListenersContainer.executeBubblingListeners(EventListenersContainer.java:177)
    at com.gargoylesoftware.htmlunit.javascript.host.Node.fireEvent(Node.java:584)
    at com.gargoylesoftware.htmlunit.html.HtmlElement$2.run(HtmlElement.java:936)
    at net.sourceforge.htmlunit.corejs.javascript.Context.call(Context.java:515)
    at net.sourceforge.htmlunit.corejs.javascript.ContextFactory.call(ContextFactory.java:507)
    at com.gargoylesoftware.htmlunit.html.HtmlElement.fireEvent(HtmlElement.java:941)
    at com.gargoylesoftware.htmlunit.html.HtmlPage.executeEventHandlersIfNeeded(HtmlPage.java:1237)
    at com.gargoylesoftware.htmlunit.html.HtmlPage.initialize(HtmlPage.java:183)
    at com.gargoylesoftware.htmlunit.WebClient.loadWebResponseInto(WebClient.java:449)
    at com.gargoylesoftware.htmlunit.WebClient.getPage(WebClient.java:329)
    at com.gargoylesoftware.htmlunit.WebClient.getPage(WebClient.java:354)
    at com.gargoylesoftware.htmlunit.html.HtmlForm.submit(HtmlForm.java:179)
    at com.gargoylesoftware.htmlunit.html.HtmlSubmitInput.doClickAction(HtmlSubmitInput.java:82)
    at com.gargoylesoftware.htmlunit.html.HtmlElement.click(HtmlElement.java:1329)
    at com.gargoylesoftware.htmlunit.html.HtmlElement.click(HtmlElement.java:1288)
    at com.gargoylesoftware.htmlunit.html.HtmlElement.click(HtmlElement.java:1257)
    at TestOne.run(TestOne.java:77)
    at TestOne.main(TestOne.java:215)
最佳答案
这是导致我在正在加载的页面上出现javascript错误.
我设定

webClient.getoptions().setThrowExceptionOnScriptError(false);

但它仍然引发了异常.

解决方案:如果您捕获ScriptException,则页面仍处于完全加载状态,您可以继续处理并忽略该异常.

失败的HTML示例:

<html>
<Head><title>JS Test</title>
    <script type="text/javascript">
        function run_js()
        {
                form.myinput.value = "from on body";
//              document.myform.myinput.value = "from body";
        }
        </script>   
    </head>

<body onload="run_js()">
    The Body.
    <form name="myform">
        <input name="myinput" type="text"/>
    </form>
</body>
</html>

原文地址:https://www.jb51.cc/html/530576.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐