Forum Discussion

mithunbhat's avatar
mithunbhat
Occasional Contributor
3 years ago
Solved

How to enable/disable multiple assertions in a test Suite via groovy script

I need to enable/disable multiple assertions in a test Suite via groovy script    I know how to disable individual assertion via testSuite.getTestCaseByName("TestCaseName").getTestStepByName("Test...
  • nmrao's avatar
    nmrao
    3 years ago

    mithunbhat 

    Not sure what is happening unless you provide the log. Or it is possible to have an issue with copy paste, sometimes, different characters are pasted. Please look in that front as well.

     

    Or you can create a simple project with a test suite and try running it. It should work.

     

    Any way, the solution provided is a tested solution.

     

    By the way, here is an improved version, to handle test steps that can't have an assertion such as Groovy Script, Properties steps

     

    testSuite.testCaseList?.each { kase -> 
    	kase.testStepList?.each { 
    		if (it.metaClass.respondsTo(it, 'getAssertions')) it?.assertions['ConciseResponse']?.disabled = true 
    	} 
    }