assert !isLongRunning(page);
// begin a conversation
HtmlSubmitInput beginConversationButton = getFirstMatchingElement(page, HtmlSubmitInput.class,
"beginConversationButton");
page = beginConversationButton.click();
assert isLongRunning(page);
// begin a conversation again and check that IllegalStateException is thrown
HtmlSubmitInput beginConversationButton2 = getFirstMatchingElement(page, HtmlSubmitInput.class,
"beginConversationAndSwallowException");