Rushabh Mehta | 4ceb20e | 2014-05-02 12:14:03 +0530 | [diff] [blame] | 1 | # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors |
| 2 | # License: GNU General Public License v3. See license.txt |
| 3 | |
| 4 | """ |
| 5 | Run Selenium Tests |
| 6 | |
| 7 | Requires a clean install. After reinstalling fresh db, call |
| 8 | |
| 9 | frappe --execute erpnext.tests.sel_tests.start |
| 10 | |
| 11 | """ |
| 12 | |
| 13 | from __future__ import unicode_literals |
| 14 | import frappe |
| 15 | |
| 16 | from frappe.utils import sel |
| 17 | |
| 18 | def start(): |
| 19 | sel.start(verbose=True) |
| 20 | sel.login("#page-setup-wizard") |
| 21 | |
| 22 | |
| 23 | # complete setup |
| 24 | # new customer |
| 25 | # new supplier |
| 26 | # new item |
| 27 | # sales cycle |
| 28 | # purchase cycle |