20 lines
691 B
TypeScript
20 lines
691 B
TypeScript
export const enum CommonSelectors {
|
|
SelectItem = '.g-select-list__option',
|
|
SelectedItem = '.g-select-list__option_colored',
|
|
TextInput = '.g-text-input__control',
|
|
TextInputErrorState = '.g-text-input_state_error',
|
|
TextArea = '.g-text-area__control',
|
|
RadioButtonOption = '.g-segmented-radio-group__option',
|
|
RadioButtonOptionControl = '.g-segmented-radio-group__option-control',
|
|
CheckedRadioButtonOption = '.g-segmented-radio-group__option_checked',
|
|
Button = '.g-button',
|
|
}
|
|
|
|
export const enum DialogSelectors {
|
|
ApplyButton = '.g-dialog-footer__button_action_apply',
|
|
}
|
|
|
|
export const enum CommonQa {
|
|
ControlErrorMessage = 'control-error-message-qa',
|
|
}
|