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:名称'alice bob'已经存在。提供不同的名称”

任何建议都会很棒。

谢谢,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 回答