0

どこかでプロキシを見つけてコードに適用したところ、成功したようです。しかし、submit( "btnG")になると、構文エラーSyntaxErrorが発生しました。

syntax error (httpunit; line 155)
at org.mozilla.javascript.NativeGlobal.constructError(NativeGlobal.java:597)
at org.mozilla.javascript.TokenStream.reportSyntaxError(TokenStream.java:1324)... 
4

1 に答える 1

0

net.sourceforge.jwebunit.junit.WebTestCaseからの送信は非推奨になっているため、これを使用しようとしている場合は、いくつかの問題が発生します。

public void submit()
Deprecated. 
Submit form - default submit button will be used (unnamed submit button, or named button if there is only one on the form.
submit

public void submit(String buttonName)
Deprecated. 
Submit form by pressing named button.
Parameters:
buttonName - Submit button name attribut value.
submit

public void submit(String buttonName, String buttonValue)
Deprecated. 
Submit the form by pressing the named button with the given value (label). Useful if you have more than one submit button with same name.
Parameters:
buttonName - Submit button name attribut value.
buttonValue - Submit button value attribut value.
于 2012-04-02T22:52:38.483 に答える