Changes between Version 8 and Version 9 of DeveloperGuidelines/Testing
- Timestamp:
- 11/22/13 11:45:54 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Testing
v8 v9 22 22 === Selenium Tests === 23 23 Selenium Tests use the [http://seleniumhq.org/docs/03_webdriver.jsp Selenium WebDriver] to simulate user interactions within a browser. They are very thorough as they test interactions in the entire Sahana Eden stack including JS, but can also be fragile (detect false negatives). 24 To run all the Selenium Tests: 24 25 Before running these tests, see [wiki:DeveloperGuidelines/Testing/Selenium Automated Tests - Selenium] for installation and setup. Then to run all the Selenium Tests: 25 26 {{{ 26 27 python web2py.py -S eden -M -R applications/eden/modules/tests/suite.py 27 28 }}} 28 See: [wiki:DeveloperGuidelines/Testing/Selenium Automated Tests - Selenium] for more details 29 29 30 30 31 === Unit Tests ===