Hi,
What you would achieve by allowing the test to continue? Just more failure at every other step.
I cannot see the value in continuing a test that has failed.
I can guess that part of the test or a previous test has created something that causes your test to fail if it exists and you wan to ignore this and continue.
This was an issue I faced where I uploaded a file, but the next time the test run the file already existed so my test failed.
For this situation I improved my tests to upload the same file, but rename it to a unique name before uploading.
So this is what you should be doing, writing tests in a way so that can be run twice in a row without issue.
Cheers,
Adrian.