Skip to content

Commit

Permalink
Django test client driver refs #23
Browse files Browse the repository at this point in the history
  • Loading branch information
dryobates committed Jan 30, 2014
1 parent 5ed7fc5 commit ce75872
Show file tree
Hide file tree
Showing 7 changed files with 716 additions and 0 deletions.
7 changes: 7 additions & 0 deletions splinter/browser.py
Expand Up @@ -24,6 +24,13 @@
except ImportError:
pass

try:
import django # noqa
from splinter.driver.djangoclient import DjangoClient
_DRIVERS['djangoclient'] = DjangoClient
except ImportError:
pass


def Browser(driver_name='firefox', *args, **kwargs):
"""
Expand Down

0 comments on commit ce75872

Please sign in to comment.