10 lines
227 B
Python
10 lines
227 B
Python
"""Selectors for the intake flow."""
|
|
|
|
|
|
from typing import ClassVar
|
|
|
|
|
|
class IntakeSelectors:
|
|
DESCRIPTION_FIELD: ClassVar[str] = '[data-test="intake-description"]'
|
|
NEXT_BUTTON: ClassVar[str] = '[data-test="intake-next"]'
|