Forum Discussion
groovyguy
8 years agoCommunity Hero
As far as I am aware, there's no built in way to handle this. Instead, if you need this functionality, you may need to consider writing a groovy script that can interpret the required data fields from the Data Source and adjust the necessary test steps accordingly. I'd set it up something like this:
- Data Source
- Groovy Script
- Analyze data set from Data Source
- If it is valid, proceed as normal
- If the data fails requirements, use groovy to disable the following tests.
- Test Steps using DataSource data
- These depend on what you are testing
- Groovy script to set all test steps back to their default state
- Data Loop
Does that help?