Is there a variable in which the console output is stored? If I have this variable I can save it in a file and open it later.
Asked
Active
Viewed 58 times
1 Answers
3
Not to my knowledge.
The codecept_debug()
function exists for this reason: Codeception basically takes over stdout, and only data sent through this function will appear in your test output.
The best I could suggest would be to have your test process send everything it outputs to a file for you to consult later. If you go that route, you'll probably want to disable the colors
setting in your Codeception configuration (see related documentation).

Matthew Turland
- 763
- 3
- 11
-
Thanks, I will try that. – METAPum4 May 11 '20 at 13:08