driver.findElement(AUCTION_TITLE).clearAndSendKeys(title);
driver.findElement(AUCTION_DESCRIPTION).clearAndSendKeys(description);
driver.findElement(AUCTION_CATEGORY_ID).clearAndSendKeys(categoryId);
driver.findElement(INVOKE_SERVICE_BUTTON).clickAndWait();
AjaxWebElement response = driver.findElement(RESPONSE_AREA);
assertTrue("Response area should contain information about updating the auction.", response.getValue().contains(UPDATE_AUCTION_RESPONSE));
}