from typing import Any

from django.test import LiveServerTestCase

class SeleniumTestCaseBase:
    browsers: Any = ...
    browser: Any = ...
    @classmethod
    def import_webdriver(cls, browser: Any) -> Any: ...
    def create_webdriver(self) -> Any: ...

class SeleniumTestCase(LiveServerTestCase):
    implicit_wait: int = ...
    def disable_implicit_wait(self) -> None: ...
