Refactor iOS UI tests to blueprint architecture and migrate legacy suites
This commit is contained in:
@@ -195,6 +195,7 @@ struct OnboardingCoordinator: View {
|
||||
.font(.title2)
|
||||
.foregroundColor(Color.appPrimary)
|
||||
}
|
||||
.accessibilityIdentifier(AccessibilityIdentifiers.Onboarding.backButton)
|
||||
.opacity(showBackButton ? 1 : 0)
|
||||
.disabled(!showBackButton)
|
||||
|
||||
@@ -203,6 +204,7 @@ struct OnboardingCoordinator: View {
|
||||
// Progress indicator
|
||||
if showProgressIndicator {
|
||||
OnboardingProgressIndicator(currentStep: currentProgressStep, totalSteps: 5)
|
||||
.accessibilityIdentifier(AccessibilityIdentifiers.Onboarding.progressIndicator)
|
||||
}
|
||||
|
||||
Spacer()
|
||||
@@ -214,6 +216,7 @@ struct OnboardingCoordinator: View {
|
||||
.fontWeight(.medium)
|
||||
.foregroundColor(Color.appTextSecondary)
|
||||
}
|
||||
.accessibilityIdentifier(AccessibilityIdentifiers.Onboarding.skipButton)
|
||||
.opacity(showSkipButton ? 1 : 0)
|
||||
.disabled(!showSkipButton)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user