Mk1
8 years agoOccasional Contributor
waiting until the control is activated when sending keys
var bankName = genIdentPath;
var tempbankName = context1.get("bankName");
if((aqString.GetLength(tempbankName) != null)) {
b = bankName.PwcAutoComplete("p_bank_codeCoB").TextInput(0);
if(b.Exists) {
b.Keys(tempbankName);
}
} else {
Log.Message("");
}
Example 2
//select branch name
var branchName = genIdentPath;
var tempbranchName = context1.get("branchName");
if((aqString.GetLength(tempbranchName) != null)) {
branchName.PwcAutoComplete("p_branch_codeCoB").TextInput(0).Keys(tempbranchName);
} else {
Log.Message("");
}
Execution stops and spend 10-15 seconds with the following message "waiting until the control is activated"
This Controls are picked up as TextInput than ComboBox