You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
504 B

  1. 
  2. namespace SeleniumBrowser
  3. {
  4. using System;
  5. using System.Globalization;
  6. using System.IO;
  7. internal class CommanderGlobalData
  8. {
  9. public DateTime StartDateTime { get; private set; } = DateTime.Now;
  10. public int CommandCount { get; set; } = 0;
  11. public int StepCount { get; set; } = 0;
  12. public string StotrFolder => Path.Combine(Directory.GetCurrentDirectory(), "Result", StartDateTime.ToString("yyyyMMddHHmmss_fff", CultureInfo.CurrentCulture));
  13. }
  14. }