HomeDashboard/.venv/lib/python3.12/site-packages/nicegui/testing/__init__.py
2026-01-03 14:54:18 +01:00

19 lines
474 B
Python

try:
from .screen import Screen
except ImportError:
# we simply define Screen as None if selenium is not installed
# this allows simpler dependency management when only using the "User" fixture
# (see discussion in #3510)
Screen = None # type: ignore
from .user import User
from .user_interaction import UserInteraction
from .user_simulation import user_simulation
__all__ = [
'Screen',
'User',
'UserInteraction',
'user_simulation',
]