1# -*- coding: utf-8 -*- 2__doc__ = 'webtest.sel is now in a separate package name webtest-selenium' 3 4 5class SeleniumApp(object): 6 7 def __init__(self, *args, **kwargs): 8 raise ImportError(__doc__) 9 10 11def selenium(*args, **kwargs): 12 raise ImportError(__doc__) 13