When I run test cases and they finish, in my logs output directory is a new directory Browser/traces which has a directory named with a GUID, however that directory is empty. I guess that’s the Playwright’s temporary traces directory. I wonder why it’s left in place after text execution.
That is correct, it’s left over from Playwright side. Library deletes the ${OUTPUT_DIR}/Browser folder at the test suite startup. But we don’t check empty folders at the test execution end.
1 Like
Thanks for the info.