Advertisement
Guest User

Re gen cases within template dynamically

a guest
Jun 20th, 2016
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Robots 0.49 KB | None | 0 0
  1. Hi, I know below one will generate case1 and case2 in a case table:
  2. *** Settings ***
  3. Test Template         Testcases
  4. *** Test cases ***
  5. case1         124
  6. case2         456
  7. *** Keywords ***
  8. Testcases
  9.     [arguments]      ${caseid}
  10.     ....
  11.  
  12. The thing is number of the case here in real world is dynamically generated from the list, how can I dynamically generate below sections while still get case1 and case2 in a testcase table ?
  13. *** Test cases ***
  14. case1         124
  15. case2         456
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement