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) { [...] ...

WinRunner custom dialogs: parameterize your scripts at ...

Posted by Albert Gareev on Dec 21, 2007
0
How to input parameters for WinRunner scripts Description In order to use a customizable dialog, you need to declare data fields and data handler that will populate them as per your needs/rules. # create_custom_dialog specific fields static _env_str, _case_str, _input_str; # public function _on_param_dlg(in env_str, in case_str, in input_str) {  _env_str = env_str;  _case_str = [...] ...

Breakdown (decomposition) approach

Posted by Albert Gareev on Dec 15, 2007
0
A challenge Requirements are never complete or detailed enough… It might be a risk we have to consider or a challenge we need to take. This applies to anything in our job: from testing to development tasks. How do I handle this? An approach The approach I use I usually call a breakdown or decomposition. One might [...] ...

Test Script Robustness

Posted by Albert Gareev on Dec 10, 2007
0
Robustness is the quality of being able to withstand stresses, pressures, or changes in procedure or circumstance. A system, organism or design may be said to be “robust” if it is capable of coping well with variations (sometimes unpredictable variations) in its operating environment with minimal damage, alteration or loss of functionality. wikipedia.org Test Script [...] ...
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.