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
|
|
@ -4,6 +4,7 @@
|
|||
<v-container fluid>
|
||||
<div class="room-name no-upper">{{ $t("profile.title") }}</div>
|
||||
<v-btn
|
||||
id="btn-close"
|
||||
text
|
||||
class="header-button-right"
|
||||
v-show="$navigation && $navigation.canPop()"
|
||||
|
|
@ -26,6 +27,7 @@
|
|||
<img v-if="userAvatar" :src="userAvatar" />
|
||||
<span v-else class="white--text">{{ userAvatarLetter }}</span>
|
||||
<input
|
||||
id="avatar-picker"
|
||||
ref="avatar"
|
||||
type="file"
|
||||
name="avatar"
|
||||
|
|
@ -41,7 +43,7 @@
|
|||
<!-- <div v-if="$matrix.currentUser.is_guest">
|
||||
{{ $t("profile.temporary_identity") }}
|
||||
</div> -->
|
||||
<v-btn depressed block class="outlined-button" @click.stop="logout">{{
|
||||
<v-btn id="btn-logout" depressed block class="outlined-button" @click.stop="logout">{{
|
||||
$t("menu.logout")
|
||||
}}</v-btn>
|
||||
</v-col>
|
||||
|
|
@ -101,10 +103,11 @@
|
|||
<v-divider></v-divider>
|
||||
<v-card-actions>
|
||||
<v-spacer></v-spacer>
|
||||
<v-btn text @click="closeEditPasswordDialog">{{
|
||||
<v-btn id="btn-password-cancel" text @click="closeEditPasswordDialog">{{
|
||||
$t("menu.cancel")
|
||||
}}</v-btn>
|
||||
<v-btn
|
||||
id="btn-password-set"
|
||||
:disabled="!passwordsMatch"
|
||||
color="primary"
|
||||
text
|
||||
|
|
@ -136,10 +139,11 @@
|
|||
<v-divider></v-divider>
|
||||
<v-card-actions>
|
||||
<v-spacer></v-spacer>
|
||||
<v-btn text @click="showEditDisplaynameDialog = false">{{
|
||||
<v-btn id="btn-displayname-cancel" text @click="showEditDisplaynameDialog = false">{{
|
||||
$t("menu.cancel")
|
||||
}}</v-btn>
|
||||
<v-btn
|
||||
id="btn-displayname-set"
|
||||
color="primary"
|
||||
text
|
||||
@click="
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue