Ejemplo n.º 1
0
 public static void OnDemand()
 {
     if (UserChecker.ItIsMe())
     {
         OnceOnlyWriter.WriteLine(SauceryConstants.ON_DEMAND, Enviro.SauceOnDemandBrowsers);
     }
 }
Ejemplo n.º 2
0
 public static void ExtractJsonSegment(string json, int startIndex, int endIndex)
 {
     if (UserChecker.ItIsMe())
     {
         Console.WriteLine("DEBUG MESSAGE: ExtractJsonSegment params {0} {1} {2}", json, startIndex, endIndex);
         Console.Out.Flush();
     }
 }
Ejemplo n.º 3
0
 public static void PrintPlatformDetails(PlatformTestData platform)
 {
     if (UserChecker.ItIsMe())
     {
         Console.WriteLine("DEBUG MESSAGE START");
         Console.WriteLine(@"SELENIUM_OS=" + platform.Os);
         Console.WriteLine(@"SELENIUM_BROWSER=" + platform.BrowserName);
         Console.WriteLine(@"SELENIUM_VERSION=" + platform.BrowserVersion);
         Console.WriteLine(@"SELENIUM_LONG_VERSION=" + platform.LongVersion);
         Console.WriteLine(@"SELENIUM_DEVICE_TYPE=" + platform.DeviceType);
         Console.WriteLine(@"SELENIUM_DEVICE=" + platform.Device);
         Console.WriteLine("DEBUG MESSAGE END");
     }
 }