@Test
@SpecAssertion(section = CONVERSATION_CONTEXT, id = "a")
public void testConversationActiveDuringNonFacesRequest() throws Exception {
WebClient client = new WebClient();
HtmlPage page = client.getPage(getPath("cloud.jsf"));
HtmlSpan span = getFirstMatchingElement(page, HtmlSpan.class, "cloudName");
assert span.getTextContent().equals(Cloud.NAME);
}