[Answer]-Django run selenium test

1👍

Follow this tutorial on how to put your tests into folders: http://www.pioverpi.net/2010/03/10/organizing-django-tests-into-folders/

in general:

from [Project Name].[App Name].tests.[filename] import *  
from [Project Name].[App Name].seleniumtests.[selenium] import *  

#starts the test suite  
__test__= {  
           'your_django_tests': [filename],
            'selenium': [selenium],
           }  

Leave a comment