I'm trying silktest for the first time with an in house application. In one of the windows, I have a button that has two menu lists :
New (pushbutton) ---> Option1 (list menu ) + Option2
if option1 clicked ---> subOption1, subOption2?
All these options are specific to the current scenario and user.
When recording, silktest detects the "New" pushbutton but when playing back, it throws an error : the handle of the object is invalidated.
One of the possible solutions is to instantiate Object something like this:
dim button as New Pushbutton
but it throws an error: SilkTest.ntf.Pushbutton.Friend sub New (handle as silk test.ntf.ObjectHandle) is not accessible in this context because it is 'Friend'
Can someone help? Any suggestions??