Forum Discussion
i think i figured out how to show you the code. i created an empty test1 keyword test then copied pasted the drop down statements causing the issue from the actual keyword script to the test1 keyword test and then converted the test1 keyword test to a script. here is the script code
function Test1()
{
//Clicks the 'ucboCurrentBranch' object.
Aliases.NuPoint.frmContainer.MdiClient.frmTellerContainer.pnlMain.utcTeller.UltraTabPageControl5.ctlWorkstationSettings.Panel1.pnlSettings.tlpSettings.uegbBranch.UltraExpandableGroupBoxPanel3.ucboCurrentBranch.Click(245, 10);
//Clicks the 'ValueListDropDown' object.
Aliases.NuPoint.DropDownForm.ValueListDropDown.Click(244, 6);
OCR.Recognize(Aliases.NuPoint.DropDownForm.ValueListDropDown).BlockByText("Avenue").Click();
//Clicks the 'ubtnSave' object.
Aliases.NuPoint.frmContainer.MdiClient.frmTellerContainer.pnlMain.utcTeller.UltraTabPageControl5.ctlWorkstationSettings.ugbButtons.pnlButtons.ubtnSave.Click(30, 14);
//Clicks the 'btnOK' button.
Aliases.NuPoint.dlgCSINuPoint.btnOK.ClickButton();
}
the click with the 245,10 coordinates is the click on the combobox dropdown arrow to open up and reveal the available selections
the click with the 244,6 coordinates is the single click of the scroll up arrow
the OCR click is where i'm trying to select the entry that contains the word "Avenue" but when the combobox closes up it remains the same entry as before.