var username = system.GetAsset("OTM_Username").ToString();
var password = system.GetAsset("OTM_Password").ToString();
var screen = uiAutomation.Open(Descriptors.Oracle_Scope.Edge__OTM);
screen.TypeInto(Descriptors.Oracle_Scope.Edge__OTM.Username_Field,username);
screen.TypeInto(Descriptors.Oracle_Scope.Edge__OTM.Password_Field,password);
screen.Click(Descriptors.Oracle_Scope.Edge__OTM.Sign_In_Button);
This does it all in hardware events, how do I set it as simulate clicks?
Along with the variable initiation,
// Configuring input methods
InputMethod simulateTypeInputMethod = new InputMethod { Method = InputMethodType.SimulateType };
InputMethod simulateClickMethod = new InputMethod { Method = InputMethodType.SimulateClick };
The problem more or so seems to be that “TypeInto” does not take 3 overload arguments, I’m wondering if this is not supported in coded automation yet?