In Uipath studio we have output panel to display the output using Write Line activity. When I’m running my process using Uipath Robot, what is the way to display the output when my process is closed. Which means that when my process is finished, I should get the result of my process(eg: content in a text file) immediately after the end of process. None of the application should be opened…
Awesome
We can write the string that we have mentioned in WRITELINE activity In a WRITE CELL or ADD DATAROW activity so that we can store them in a EXCEL file
Once after saving to excel file and the moment process execution is over we can see the same strings that we have mentioned in writeline and the one going to be in output panel here in EXCEL FILE
Or
To a text file like notepad with Write text activity or APPEND LINE activity
So as you want to write that output text to a text file and also if we don’t want to open any application manually to see that file
First we can write the text we want to a txt file with write text activity
Then atlast to the sequence of activities add a START PROCESS activity where pass the filepath of txt file we have created and added text, to the property FileName
So that it will open the notepad immediately once the process is over and you could be able to see the text that we have written to the text file