I got a piece of code in vbscript to add parameter to a test case
but it throws following error
Entity with Key '5' does not exist in table 'TEST'
VBSCRIPT:
Dim supportParamTest
Set supportParamTest = TDConnection.TestFactory.Item(5)
Set testParamsFactory = supportParamTest.TestParameterFactory
Set parameter = testParamsFactory.AddItem(Null)
parameter.Name = "name"
parameter.Description = "desc"
parameter.Post
Can anyone help me out?