MT#55492 add data-cy to call recording page

Change-Id: I1d1e20499191acadd592efd9082dae3ace12177f
pull/27/merge
Nico Schedel 3 years ago
parent 02903fa58b
commit 01c7d8187d

@ -11,6 +11,7 @@
dense dense
:options="filterTypeOptions" :options="filterTypeOptions"
:label="$t('Filter by')" :label="$t('Filter by')"
data-cy="csc-recording-filter"
:disable="loading" :disable="loading"
/> />
</div> </div>
@ -24,6 +25,7 @@
dense dense
:disable="loading || filterType === null" :disable="loading || filterType === null"
:label="$t('Start time')" :label="$t('Start time')"
data-cy="csc-recording-filter-time-start"
> >
<template v-slot:prepend> <template v-slot:prepend>
<q-icon <q-icon
@ -88,6 +90,7 @@
dense dense
:disable="loading || filterType === null" :disable="loading || filterType === null"
:label="$t('End time')" :label="$t('End time')"
data-cy="csc-recording-filter-time-end"
@input="triggerFilter" @input="triggerFilter"
> >
<template v-slot:prepend> <template v-slot:prepend>
@ -157,6 +160,7 @@
dense dense
:disable="loading || filterType === null" :disable="loading || filterType === null"
:label="(filterType === null) ? $t('Type something') : filterTypeModel.label" :label="(filterType === null) ? $t('Type something') : filterTypeModel.label"
data-cy="csc-recording-filter-input"
@keypress.enter="triggerFilter" @keypress.enter="triggerFilter"
@keydown.space.prevent @keydown.space.prevent
> >

Loading…
Cancel
Save