I am writing a script in AutoIt to test a windows application, and I am using the _Assert function to verify certain actions.
In the documentation I found there is a parameter to say whether or not the script should end if an assertion fails, which is great because in some cases I would like the script to continue, but unfortunately it is still halted by a message box.
Can I override the _Assert function somehow to only print to the console when certain assertions fail, so the script can continue without user interaction?