Passing Parameters to Keyword Test From Script
SOLVED- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2016
07:00 AM
01-06-2016
07:00 AM
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();
Solved! Go to Solution.
1 REPLY 1
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2016
07:09 AM
01-06-2016
07:09 AM
Nevermind. This is how it is done:
KeywordTests.GridFilterEmployee_ID.Run(AllEmployees[i], false);
