diff --git a/modules/ui/src/app/components/version/consent-dialog/consent-dialog.component.html b/modules/ui/src/app/components/version/consent-dialog/consent-dialog.component.html
index 4a625d58c..bc8252909 100644
--- a/modules/ui/src/app/components/version/consent-dialog/consent-dialog.component.html
+++ b/modules/ui/src/app/components/version/consent-dialog/consent-dialog.component.html
@@ -73,6 +73,7 @@
Welcome to Testrun!
color="primary"
mat-button
type="button"
+ aria-label="Download new version"
(click)="cancelOnDownload()">
Download
@@ -88,7 +89,7 @@ Welcome to Testrun!
href="https://policies.google.com/technologies/partner-sites"
target="_blank"
class="message-link"
- aria-label="Terms of service"
+ aria-label="Terms of service here"
>here.
@@ -109,6 +110,7 @@ Welcome to Testrun!
class="confirm-button"
color="primary"
mat-raised-button
+ aria-label="OK and Proceed to Testrun"
type="button">
OK
diff --git a/modules/ui/src/app/components/version/version.component.ts b/modules/ui/src/app/components/version/version.component.ts
index 8ab7acc17..c5d7880a9 100644
--- a/modules/ui/src/app/components/version/version.component.ts
+++ b/modules/ui/src/app/components/version/version.component.ts
@@ -71,7 +71,7 @@ export class VersionComponent implements OnInit, OnDestroy {
openConsentDialog(version: Version) {
const dialogRef = this.dialog.open(ConsentDialogComponent, {
- ariaLabel: 'Consent dialog',
+ ariaLabel: 'Welcome to Testrun modal window',
data: version,
autoFocus: true,
hasBackdrop: true,