Web ドライバーで例外メッセージをアサートしたいので、以下のように jsp を介して例外メッセージを表示します。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ page isErrorPage="true" import="java.io.PrintWriter" %>
<html>
<head>
<title>Online Accounting Software</title>
<link type="text/css" rel="stylesheet" href="/stylesheets/main.css" />
</head>
<body>
<div class="wrapper">
<div class="page-container">
<jsp:include page="/header.jsp" />
<jsp:include page="/mainMenuHeader.jsp" />
<div class="blocktenant">
<%
// unwrap ServletExceptions.
while (exception instanceof ServletException) {
exception = ((ServletException) exception).getRootCause();
}
// print stack trace.
out.println(exception.getMessage());
%>
</div>
</div>
</div>
</body></html>
しかし、driver.getPageSource().contains(containString); を使用して例外メッセージをアサートすることはできません。私のメッセージは「com.veersoft.gwt.shared.VsException: Name 'alice bob' already exists. Provide different name」です
どんな提案も素晴らしいでしょう。
ありがとう、MSNaidu..