Can you clickbutton asynchronously
so for my test I have to either click button or press F12 (both do the same). TC then wait for completion but I need it to press another tested app to actually finish.
After about a minute the transaction times out and then TC can continue. I don't want it to timeout of course I need TC to press or click and be able to continue with the next few steps. how would one do this?
My project is in .vbs
So how do i get TC to click the button without waiting for it to finish?
I tried Keys methode and the code works
Sub Press_Keys
Dim Obj, Result
Set Obj = Aliases.etc.etc.frmOrders
Set Result = Runner.CallObjectMethodAsync(Obj, "Keys", "[F12]")
End SubBut TC still get stuck in endless loop.
The action is waiting for a response, but TC has to give the response in another tested app.
EDIT: This worked but it takes a long timke for TC to go to the next step.