Resolve "set fields to use meaningful ID names for automated test"
This commit is contained in:
parent
4b413c1893
commit
7a50e22471
23 changed files with 70 additions and 25 deletions
|
|
@ -16,6 +16,7 @@
|
|||
<v-col cols="4" align="center">
|
||||
<v-btn
|
||||
v-if="state == states.RECORDING"
|
||||
id="btn-pause"
|
||||
style="background-color: white; padding: 30px"
|
||||
icon
|
||||
@click.stop="pauseRecording"
|
||||
|
|
@ -24,6 +25,7 @@
|
|||
</v-btn>
|
||||
<v-btn
|
||||
v-else-if="state == states.RECORDED"
|
||||
id="btn-send"
|
||||
style="background-color: #3ae17d; padding: 30px"
|
||||
icon
|
||||
:disabled="!recordedFile"
|
||||
|
|
@ -33,6 +35,7 @@
|
|||
</v-btn>
|
||||
<v-btn
|
||||
v-else
|
||||
id="btn-record"
|
||||
style="background-color: red; padding: 30px"
|
||||
icon
|
||||
@click.stop="startRecording"
|
||||
|
|
@ -41,7 +44,7 @@
|
|||
</v-btn>
|
||||
</v-col>
|
||||
<v-col cols="4" align="center">
|
||||
<v-btn icon @click.stop="cancelRecording">
|
||||
<v-btn id="btn-record-cancel" icon @click.stop="cancelRecording">
|
||||
<v-icon color="white">close</v-icon>
|
||||
</v-btn>
|
||||
</v-col>
|
||||
|
|
@ -97,12 +100,12 @@
|
|||
</div>
|
||||
</v-col>
|
||||
<v-col cols="3">
|
||||
<v-btn @click.stop="cancelRecording" text class="swipe-info">{{
|
||||
<v-btn id="btn-record-cancel" @click.stop="cancelRecording" text class="swipe-info">{{
|
||||
$t("menu.cancel")
|
||||
}}</v-btn>
|
||||
</v-col>
|
||||
<v-col cols="3">
|
||||
<v-btn @click.stop="stopRecording" icon class="swipe-info"
|
||||
<v-btn id="btn-record-stop" @click.stop="stopRecording" icon class="swipe-info"
|
||||
><v-icon color="white">stop</v-icon></v-btn
|
||||
>
|
||||
</v-col>
|
||||
|
|
@ -124,7 +127,7 @@
|
|||
</div>
|
||||
</v-col>
|
||||
<v-col align="right">
|
||||
<v-btn icon @click.stop="cancelRecording">
|
||||
<v-btn id="btn-record-cancel" icon @click.stop="cancelRecording">
|
||||
<v-icon color="white">close</v-icon>
|
||||
</v-btn>
|
||||
</v-col>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue