The 2 options, manual testing and model-based testing, are not necessarily opposing one to the other but there are some clear pros and cons.
Manual testing has the advantage of being able to test for unexpected or edge cases that a model may not have been trained on. It also allows for more flexibility in terms of the types of tests that can be performed.
However, manual testing can be time-consuming and prone to human error. Multiple criteria checks are complex to define accurately. Maintenance is also a struggle to perform version after version.
Model-based testing, on the other hand, has the advantage of being able to perform large numbers of tests automatically and quickly. It can also be more efficient in detecting certain types of bugs, such as those related to logic or syntax. However, model-based testing may not be able to detect all types of bugs, and it can be difficult to create an accurate model that covers all possible inputs and scenarios.
Model-based testing is very well suited for functional and certification-like type of tests. With a clear definition of the testing scope from the beginning of a project, it can cover almost 100% of all requirements. Manual testing might still be necessary for corner cases.