From 3e7fc0f008b270a2ab118a7e82f8b01216c8ae43 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Sat, 23 May 2026 19:53:30 +0200 Subject: [PATCH] Update social platform selection button name to 'Website' in signUpPage --- tests/e2e/web/pages/signUpPage.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/web/pages/signUpPage.ts b/tests/e2e/web/pages/signUpPage.ts index fe7d77f0..ce53777f 100644 --- a/tests/e2e/web/pages/signUpPage.ts +++ b/tests/e2e/web/pages/signUpPage.ts @@ -151,7 +151,7 @@ export class SignUpPage { this.smokerField = page.getByText('Yes', {exact: true}) this.nonSmokerField = page.getByText('No', {exact: true}) this.alcoholConsumedPerMonthField = page.getByTestId('alcohol-consumed-per-month') - this.socialPlatformSelectionField = page.getByRole('button', {name: 'Platform'}) + this.socialPlatformSelectionField = page.getByRole('button', {name: 'Website'}) this.socialPlatformSearchField = page.getByRole('textbox', {name: 'Search...'}) this.addSocialPlatformField = page.getByRole('textbox', {name: 'URL'}) this.addSocialPlatformButton = page.locator('button').filter({hasText: 'Add'}).nth(3)