mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-11 10:10:25 +01:00
PM-9644 adding test ids in item details v2 (#10245)
This commit is contained in:
parent
95bdea3925
commit
5b628b7c1f
@ -7,7 +7,14 @@
|
|||||||
<label class="tw-block tw-w-full tw-mb-1 tw-text-xs tw-text-muted tw-select-none">
|
<label class="tw-block tw-w-full tw-mb-1 tw-text-xs tw-text-muted tw-select-none">
|
||||||
{{ "itemName" | i18n }}
|
{{ "itemName" | i18n }}
|
||||||
</label>
|
</label>
|
||||||
<input readonly bitInput type="text" [value]="cipher.name" aria-readonly="true" />
|
<input
|
||||||
|
readonly
|
||||||
|
bitInput
|
||||||
|
type="text"
|
||||||
|
[value]="cipher.name"
|
||||||
|
aria-readonly="true"
|
||||||
|
data-testid="item-name"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<ul
|
<ul
|
||||||
@ -20,6 +27,7 @@
|
|||||||
[ngClass]="{ 'tw-mb-3': cipher.collectionIds }"
|
[ngClass]="{ 'tw-mb-3': cipher.collectionIds }"
|
||||||
bitTypography="body2"
|
bitTypography="body2"
|
||||||
[attr.aria-label]="('owner' | i18n) + organization.name"
|
[attr.aria-label]="('owner' | i18n) + organization.name"
|
||||||
|
data-testid="owner"
|
||||||
>
|
>
|
||||||
<i
|
<i
|
||||||
class="tw-pt-1"
|
class="tw-pt-1"
|
||||||
@ -37,7 +45,7 @@
|
|||||||
*ngIf="cipher.collectionIds && collections"
|
*ngIf="cipher.collectionIds && collections"
|
||||||
[attr.aria-label]="'collection' | i18n"
|
[attr.aria-label]="'collection' | i18n"
|
||||||
>
|
>
|
||||||
<ul>
|
<ul data-testid="collections">
|
||||||
<li
|
<li
|
||||||
*ngFor="let collection of collections; let last = last"
|
*ngFor="let collection of collections; let last = last"
|
||||||
class="tw-flex tw-list-none"
|
class="tw-flex tw-list-none"
|
||||||
@ -61,6 +69,7 @@
|
|||||||
bitTypography="body2"
|
bitTypography="body2"
|
||||||
class="tw-flex tw-list-none"
|
class="tw-flex tw-list-none"
|
||||||
[attr.aria-label]="('folder' | i18n) + folder.name"
|
[attr.aria-label]="('folder' | i18n) + folder.name"
|
||||||
|
data-testid="folder"
|
||||||
>
|
>
|
||||||
<i class="bwi bwi-folder bwi-lg tw-pt-1" aria-hidden="true" [title]="'folder' | i18n"></i>
|
<i class="bwi bwi-folder bwi-lg tw-pt-1" aria-hidden="true" [title]="'folder' | i18n"></i>
|
||||||
<span aria-hidden="true" class="tw-pl-1 tw-mb-1">{{ folder.name }} </span>
|
<span aria-hidden="true" class="tw-pl-1 tw-mb-1">{{ folder.name }} </span>
|
||||||
|
Loading…
Reference in New Issue
Block a user