Knowledge Base Article

A script to batch edit 'Locally Stored Value' boolean true/false

 

def Suite = 'TestSuitename'
def tSuite = testRunner.testCase.testSuite.project.getTestSuiteByName(Suite)
tSuite.testCaseList.each
{ Case ->
for (prop in Case.getPropertyList())
{
prop.setUserSpecific(true)
}
}

 

Updated 3 years ago
Version 4.0

Was this article helpful?

No CommentsBe the first to comment