I am trying to save screenshot from terminal in png file however i want it to save the file like folder path with file name which is mention in excel .png from each row. For eg: Excel has 2 rows with account numbers 123 & 456 i want to save file as folderpath(multiple folder)+CurrentRow.ByField(“account numbers”).ToString()+“.png”
HI,
Can you elaborate your matter? Basically , we can use dynamic absolute path in FileName property of TakeScreenshot activity
System.IO.Path.Combine(folderpath,CurrentRow.ByField("account numbers").ToString()+".png")
Regards,
Thank you @Yoichi for quick response…It did work
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.
