HTML 代码:
<button id="welcomeContinue" class="btn btn-primary padlock active-removal" type="submit">
<span class="icon-padlock"></span>
CONTINUE
</button>
<input class="btn btn-primary padlock disabled" type="hidden" value="" title="Continue" name="continueanonymousSubmit" alt="Continue">
<input type="hidden" value=" " name="_D:continueanonymousSubmit">
法典:
driver.findElement(By.id("welcomeContinue")).click();
如何选择提交按钮并进入下一页
- 您可以尝试在按钮上使用
submit()
方法,而不是单击。 - 此外,可能应该添加一些信息以提交工作:应填写一些必填字段。选中此选项
- 可能有一些JS脚本正在运行,阻止提交工作
driver.findElement(By.xpath("//button[@type='submit']")).click()