欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Htmlunit获取没有id和name的按钮,提交表单

程序员文章站 2022-05-05 15:09:12
...

登录通常都是用form表单提交

<form id="fm1" class="fm-v clearfix" action="/xxx/xxx?service=http%3A%2F%2F106.14.119.242%3A8088%2Fwms%2F" method="post">
		<input id="username" type="text" name="username" class="inputCls" >
		<input type="text" name="password" class="inputCls" id="password">
		<input type="submit" class="submitCls" value="登录">
</form>
	获取form表单
	HtmlForm form = home.getForms().get(0);
    // 点击登录获取页面
     DomElement loginBut = form.getInputByValue("登录");
     loginBut.click();
相关标签: htmlunit