...
Code Block | ||||
---|---|---|---|---|
| ||||
// The following steps are provided as separate parameters multiStepAction("pressKey('option1')", "getObjchangeElementValue('I_7_1').value, = 'X'); pressKey('Enter')"); // The following steps are identical to the above but are provided using an array var steps = []; // define the array steps.push("pressKey('option1')"); // add a step steps.push("getObjchangeElementValue('I_7_1').value =, 'X'); pressKey('Enter')"); // add another step multiStepAction(steps); |
...