mirror of
https://github.com/davidhalter/django-stubs.git
synced 2026-02-25 19:17:17 +08:00
move generated stubs to separate directory, too messty
This commit is contained in:
23
django-stubs-generated/test/selenium.pyi
Normal file
23
django-stubs-generated/test/selenium.pyi
Normal file
@@ -0,0 +1,23 @@
|
||||
from typing import Any, Callable, Dict, List, Optional, Tuple, Type, Union
|
||||
|
||||
from django.test import LiveServerTestCase
|
||||
|
||||
|
||||
class SeleniumTestCaseBase:
|
||||
browsers: Any = ...
|
||||
browser: Any = ...
|
||||
def __new__(
|
||||
cls: Type[SeleniumTestCaseBase],
|
||||
name: str,
|
||||
bases: Tuple[Type[SeleniumTestCase]],
|
||||
attrs: Dict[str, Union[Callable, List[str], str]],
|
||||
) -> Type[SeleniumTestCase]: ...
|
||||
@classmethod
|
||||
def import_webdriver(cls, browser: Any): ...
|
||||
def create_webdriver(self): ...
|
||||
|
||||
class SeleniumTestCase(LiveServerTestCase):
|
||||
implicit_wait: int = ...
|
||||
@classmethod
|
||||
def setUpClass(cls) -> None: ...
|
||||
def disable_implicit_wait(self) -> None: ...
|
||||
Reference in New Issue
Block a user