Forum Discussion
1) I am creating this specific test using the record and playback so keyword test. Although I will say that I do plan on converting it to a script after it is made working correctly.
2) The operation in the keyword test is Keys yes. I am physically doing the exact same motions I do when it normally works just this time I have the TestComplete recorder open.
3)I am on Windows 7 64 bit.
4) I don't know. What is is a component class/ How do I find that out?
5) It is mapped by its winforms control name.
Hi,
> 2) The operation in the keyword test is Keys yes.
Just a wild guess: if the parent of the .Keys() method is something else but the control you need to press a Tab key for, change the operation/code so it used this control and check if it helps.
Some pseudocode to illustrate:
var form;
var control1 = form.control1;
var control2 = form.control2;
control1.Click();
form.Keys('[Tab]'); // <== if test contains something like that change it to control1.Keys('[Tab]');
...