mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-16 11:39:18 +00:00
hooks.txt -> hooks.py
This commit is contained in:
0
erpnext/tests/__init__.py
Normal file
0
erpnext/tests/__init__.py
Normal file
28
erpnext/tests/sel_tests.py
Normal file
28
erpnext/tests/sel_tests.py
Normal file
@@ -0,0 +1,28 @@
|
||||
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
|
||||
# License: GNU General Public License v3. See license.txt
|
||||
|
||||
"""
|
||||
Run Selenium Tests
|
||||
|
||||
Requires a clean install. After reinstalling fresh db, call
|
||||
|
||||
frappe --execute erpnext.tests.sel_tests.start
|
||||
|
||||
"""
|
||||
|
||||
from __future__ import unicode_literals
|
||||
import frappe
|
||||
|
||||
from frappe.utils import sel
|
||||
|
||||
def start():
|
||||
sel.start(verbose=True)
|
||||
sel.login("#page-setup-wizard")
|
||||
|
||||
|
||||
# complete setup
|
||||
# new customer
|
||||
# new supplier
|
||||
# new item
|
||||
# sales cycle
|
||||
# purchase cycle
|
||||
Reference in New Issue
Block a user