OS: Windows 11/Ubuntu 20.04.5 LTS
Python: 3.12.0/3.8.10
Robotframework: 7.0.1
I use “Process” library to start a process(print.py) in background. The process will keep writing data to a file in a while loop. Start Process python print.py
However, the process will suddenly stop print data to a file due to unknown reason while running test cases.
Could you help check and solve this issue? Thanks.
I’m not sure what the buffer limits for stdout and stderr are if any, but if your script is putting a large amount of data to the console, redistricting to file is a good idea.
If you need to test the content of the output, you can read it in later with Get File or similar.
I usually use a file for the consol output so I’ve never seen this issue