Changes between Version 28 and Version 29 of DeveloperGuidelines/Testing/Selenium


Ignore:
Timestamp:
06/20/12 22:29:54 (12 years ago)
Author:
coldblooded
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Testing/Selenium

    v28 v29  
    1501505) Run your test script. (Refer above on how to run/execute test scripts from the Test Suite).[[BR]][[BR]][[BR]]
    151151
    152 '''Splitting Test Functions:'"[[BR]]
     152'''Splitting Test Functions:''' [[BR]]
    153153We 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.
    154154As 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]]