preload

Custom lists: Select Multi / Select All with WinRunner

Posted by Albert Gareev on Dec 23, 2007
0
How to select multiple items in custom list Description Select each item with “Control” key (Ctrl on keyboard). public function _list_select_multy(in list, in items) {  auto rc, count, i, k;  auto dvItem[];    count = split(items, dvItem, ",");  if (count < 1) {   return(E_GENERAL_ERROR);      }      rc = list_select_item(list, str_trim(dvItem[1]));  if (rc != E_OK) { [...] ...
Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported
This work by Albert Gareev is licensed under a Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported.