Forum Discussion

hiepwork08's avatar
hiepwork08
Contributor
3 years ago
Solved

Scripts to accept parameters when called from keyword tests

Hi, I want to create a script whereby it takes in parameters, e.g.   function IsCheckBoxEnabled (String Label, Object LabelObj) {  ....  return bool; }   I then want to invoke IsCheckBoxEnab...
  • hiepwork08's avatar
    3 years ago

    I have solved this one.

    it doesnt need the type.

    correct syntax is just:

    function IsCheckBoxEnabled (Label, LabelObj)

    {

    }