william_roe
9 years agoSuper Contributor
Passing Parameters to Keyword Test From Script
How do pass a Keyword Parameter(s) from Script? When attempting to set the EmployeeID Parameter as below I receive the follow error (img)
KeywordTests.GridFilterEmployee_ID.Parameters.EmployeeID = AllEmployees[i]; KeywordTests.GridFilterEmployee_ID.Run();
Nevermind. This is how it is done:
KeywordTests.GridFilterEmployee_ID.Run(AllEmployees[i], false);