/**
* Verify that the view source function is working
* in the Struts Cookbook app.
*/
public void testStrutsCookbookViewSource() throws Exception {
WebClient webClient = new WebClient();
URL url = new URL("http://localhost:"
+ port + "/struts-cookbook-" + version + "/source.jsp"
+ "?src=/WEB-INF/src/java/examples/SuccessAction.java");
HtmlPage page = (HtmlPage) webClient.getPage(url);
assertEquals("View Source", page.getTitleText());
}