Changes between Version 28 and Version 29 of DeveloperGuidelines/Testing/Selenium
- Timestamp:
- 06/20/12 22:29:54 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Testing/Selenium
v28 v29 150 150 5) Run your test script. (Refer above on how to run/execute test scripts from the Test Suite).[[BR]][[BR]][[BR]] 151 151 152 '''Splitting Test Functions:' "[[BR]]152 '''Splitting Test Functions:''' [[BR]] 153 153 We aim to keep the test script as clean and understandable as possible. Therefore, we must separate the test functions which drives the a particular test script to another file. 154 154 As you can see with the Inventory feature tests, there is a file in the INV subdirectory called helper.py. This file contains all functions which helps drive the Inventory module tests such as send_item.py, receive_item.py and so forth.[[BR]][[BR]]