Windows version : Windows 8.1
Technology of system under test : JAVA
Hi we are having a strange problem while executing our scripts in cloud.
To login to our application we use email-id as our username like '[email protected]'
but while executing we are seeing a different pattern being entered like '[email protected]>COM' or '[email protected]>COM' after analyzing the the patterns we understood that {SHIFT} key is been triggered at some point and hence we are seeing these patterns. So, we came up with a code just before login to reset all Keys to be UP as shown below, even then we are having same issues while executing in cloud. we also checked in the angle of our keyboards fault and fixed as suggested in following link but not luck

This issue is very random but fails our scripts nightly . Any


Code: Select all
Keyboard.Up(Keys.ShiftKey);
Keyboard.Up(Keys.LShiftKey);
Keyboard.Up(Keys.RShiftKey);
Keyboard.Up(Keys.Shift);
Keyboard.Up(Keys.LControlKey);
Keyboard.Up(Keys.RControlKey);
Keyboard.Up(Keys.Control);
Keyboard.Up(Keys.ControlKey);
Keyboard.Up(Keys.Alt);