0

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..

4

1 に答える 1

1

次のようなメッセージを直接キャッチすることをお勧めします。

String t = driver.findElement(By.cssSelector("div.page-container div.blocktenant")).getText();

Assert.assertEquals(t,message);

あなたはhtmlでレンデンリングを持っていますか? ブラウザが表示するもののように。

于 2013-04-09T07:06:28.420 に答える