我有一个我要提交的网站表单。问题是该网站的提交按钮没有名称。
表格html:
<form class="login" action="oauth" method="post" name="login">
<input name="username" value="" id="username"/>
<input name="password" type="password" id="password"/>
<input class="button" type="submit" value="Login"/>
</form>
我当前的Java代码
Document response = Jsoup.connect(url)
.data("username", "username")
.data("password", "reallygoodpassword")
.data("", "Login") //But how to tag the button here?
.post();
或者这对Jsoup来说不可能吗?如果没有,是否有另一种填写表格的替代方法?
答案 0 :(得分:0)
尝试从您喜欢的浏览器提交表单,看看它是如何处理这种情况的。不要忘记从浏览器的开发者工具中显示“网络”选项卡。
一旦您知道浏览器如何处理这种情况,请在代码中执行相同操作。