diff --git a/testsuite/playwright-ui/pageFactory/objectRepository/SignupPageObjects.ts b/testsuite/playwright-ui/pageFactory/objectRepository/SignupPageObjects.ts index 1a90a5bfc750..32d666ab8ece 100644 --- a/testsuite/playwright-ui/pageFactory/objectRepository/SignupPageObjects.ts +++ b/testsuite/playwright-ui/pageFactory/objectRepository/SignupPageObjects.ts @@ -7,7 +7,7 @@ export class SignupPageObjects { static INPUT_PASSWORD_XPATH = `//input[@id='Password']`; static INPUT_RETYPE_PASSWORD_XPATH = `//input[@id='Retype Password']`; static TOS_CHECKMARK_XPATH = `//input[@id='Terms checkbox']`; - static CREATE_ACCOUNT_BUTTON_XPATH = `//button[span[text()=' Create your account ']]`; + static CREATE_ACCOUNT_BUTTON_XPATH = `//button[span[text()=' Start your free trial ']]`; static HEADER_TEXT_XPATH = `//h1[.='Start using Storj today.']`; static SUBHEADER_TEXT_XPATH = `//p[contains(text(),'Whether migrating your data or just testing out')]`; diff --git a/web/satellite/src/components/dialogs/upgradeAccountFlow/PricingPlanSelectionStep.vue b/web/satellite/src/components/dialogs/upgradeAccountFlow/PricingPlanSelectionStep.vue index 9b3acc7d3f10..ee8a531eb8fc 100644 --- a/web/satellite/src/components/dialogs/upgradeAccountFlow/PricingPlanSelectionStep.vue +++ b/web/satellite/src/components/dialogs/upgradeAccountFlow/PricingPlanSelectionStep.vue @@ -65,7 +65,7 @@ const plans = ref([ ), ]); -/* +/** * Loads pricing plan config. Assumes that user is already eligible for a plan prior to component being mounted. */ onBeforeMount(async () => { @@ -74,7 +74,7 @@ onBeforeMount(async () => { ...plans.value, new PricingPlanInfo( PricingPlanType.FREE, - 'Free Account', + 'Free Trial', 'Limited', 'Free usage up to 25GB storage and 25GB egress bandwidth per month.', null, diff --git a/web/satellite/src/components/dialogs/upgradeAccountFlow/UpgradeInfoStep.vue b/web/satellite/src/components/dialogs/upgradeAccountFlow/UpgradeInfoStep.vue index bba7cd511bff..e1e4295140f9 100644 --- a/web/satellite/src/components/dialogs/upgradeAccountFlow/UpgradeInfoStep.vue +++ b/web/satellite/src/components/dialogs/upgradeAccountFlow/UpgradeInfoStep.vue @@ -4,13 +4,13 @@