我正在 HTML 单元的帮助下测试论坛 PhpBB。我想在 PhpBB 论坛的主题之一中添加消息。我在 textarea 中输入消息并单击提交按钮,但新页面没有我的消息。似乎是什么问题?
final ArrayList<HtmlForm> formList=(ArrayList<HtmlForm>) page.getByXPath("//form[@id='postform']");
final HtmlTextArea myMessage=formList.get(0).getTextAreaByName("message");
myMessage.type("text");
final HtmlSubmitInput submit_post = formList.get(0).getInputByName("post");
page=submit_post.click();
if (page.asText().contains("text")) {
System.out.println("right");
}
谢谢你的帮助!