public void Interactive()
 {
     using (var context = new Hydro74000Context(ContextOptions))
     {
         var ocrService = OcrTestsHelper.GetOcrService(ConfigurationService, context);
         // Get the interactive Response
         var interactiveResult = OcrTestsHelper.GetOcrResult(ocrService, basePath + "Kreuz - Kyogre (Interactive).png");
         // The user clicked on the second entry
         var result = interactiveResult.InterActiveCallbacks.Skip(2).First().Value();
         // Raid successfully added
         var text = result.Result.Message;
         Assert.AreEqual(".raids add \"Kreuz \" \"Kyogre\" 8:7", text, true);
     }
 }