I am trying to get list of testsets using JACOB- ALM connection. I am using below code to establish connection.
Dispatch.call(disp, "InitConnectionEx", "url");
Dispatch.call(disp, "Login", "user","password");
Dispatch.call(disp, "Connect", "Domain","Project");
Can someone suggest me code to connect to testlab and get the details from testset?
What you need is the TestSetTreeManager. It has a method FindTestSets which gets you a list of test sets. Some example:
I am new to Jacob, so I don't exactly know when to use
get()
orcall()
ortoDispatch()
orgetDispatch()
but the example should work fine.