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

namespace SeleniumBrowser
{
using System;
using System.Globalization;
using System.IO;
internal class CommanderGlobalData
{
public DateTime StartDateTime { get; private set; } = DateTime.Now;
public int CommandCount { get; set; } = 0;
public int StepCount { get; set; } = 0;
public string StotrFolder => Path.Combine(Directory.GetCurrentDirectory(), "Result", StartDateTime.ToString("yyyyMMddHHmmss_fff", CultureInfo.CurrentCulture));
}
}