How to execute multiple test script in a single test case
One answer
No - the way test scripts work is that they are meant to be the end to end implementation of the whole test case.
The reason you can attach multiple test scripts to a test case is so you can:
- create multiple types of test script. For instance you might stat with a manual test script and then attach an automated version
- create test scripts for different test environments. For instance you might have a test case that needs to run on Windows and Linux, or on a laptop, Apple, and Android devices. The actual test case is the same but the way you implement the script and execute the test will be slightly different for each environment