Skip to content

Instantly share code, notes, and snippets.

@sukhrobkhakimov
Created March 2, 2020 10:17
Show Gist options
  • Save sukhrobkhakimov/264849709ef30d9a9e1608825e76355b to your computer and use it in GitHub Desktop.
Save sukhrobkhakimov/264849709ef30d9a9e1608825e76355b to your computer and use it in GitHub Desktop.
import Foundation
struct Accessibility {}
// MARK: - Sign In
extension Accessibility {
enum SignIn: String {
case emailTextField
case passwordTextField
case signInButton
var identifier: String {
return rawValue
}
}
}
// MARK: - Sign Up
extension Accessibility {
enum SignUp: String {
case emailTextField
case passwordTextField
case confirmPasswordTextField
case signUpButton
var identifier: String {
return rawValue
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment