Skip to content

Commit

Permalink
Fix selectitem(...). Fixing issue ldtp#17.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zitrax committed Jul 17, 2015
1 parent 9e94e94 commit 014e07d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Ldtpd/Combobox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ private int InternalComboHandler(String windowName, String objName,
utils.InternalWait(1);
LogMessage("Handle name: " + childHandle.Current.Name +
" - " + childHandle.Current.ControlType.ProgrammaticName);
bool typeExist = utils.InternalWaitTillChildControlTypeExist(childHandle, comboTtype);
bool typeExist = utils.InternalWaitTillChildControlTypeExist(childHandle, type);
LogMessage("Control type exist: " + typeExist);
AutomationElementCollection c = childHandle.FindAll(TreeScope.Subtree,
Condition.TrueCondition);
Expand Down

0 comments on commit 014e07d

Please sign in to comment.