Hi Everyone,
I have a test step with the following property which shows up fine in test plan editor just fine (using 9.11 .1+53284f62) but when I select where I want the file to be saved, the string doesn’t have the path but rather a bunch of “…” Maybe this is a basic Windows thing but I printed to the log and it confirms that the path is not right.
[Display(Group: “Calibration Settings”, Name: “Output Files”, Order: 4.2)]
[FilePath(FilePathAttribute.BehaviorChoice.Save, “csv”)]
public string CorrectionFilePath { get; set; }
public override void Run()
{
Log.Info(“Correction File Path is {0}”, CorrectionFilePath);
}
Log says:
11:59:16.811 TestStep Correction File Path is …\Desktop\test.csv
I haven’t tried using this path to actually save because it’s puzzling to me that the string itself isn’t complete.
Thanks!
Andy