Summary
TE_find_text("User",1,1,-1,-1,&col, &row, match); gets failed from VuGen 12.55 onward
Question
From VuGen 12.55 onward, when replaying TE_find_text("User",1,1,-1,-1,&col, &row, match);
You may get failed with below errors:
TE_find_text failed: pattern = User, col1 = 1, row1 = 1, col2 = -1, row2 = -1, Bad argument
Or
TE_find_text failed: pattern = User, col1 = 1, row1 = 1, col2 = -1, row2 = -1, Timeout
The same code works fine in VuGen 12.53 backward
Answer
Try to change it to TE_find_text("User",0,0,-1,-1,&col, &row, match);