In integration tests, is it possible to determine to which view a redirection took place?
<!-- After login go to home page --> <page view-id="/login.xhtml"> <navigation> <redirect view-id="/home.xhtml" /> </navigation> </page>
new FacesRequest("/login.xhtml") {
protected void afterRequest() {
// Where have I been redirected to?
};
}