Skip to content

Instantly share code, notes, and snippets.

@thecb4
Created January 2, 2019 21:09
Show Gist options
  • Save thecb4/27fd5ce4ec6910ea9790fe716a78536d to your computer and use it in GitHub Desktop.
Save thecb4/27fd5ce4ec6910ea9790fe716a78536d to your computer and use it in GitHub Desktop.
Protocol for User Behavior in UITest
protocol UserBehavior: class {
static var user: UserBehavior { get }
func launch()
func login()
func swipeToShowSearch()
func search(for text: String)
func select(_ text: String)
func wait(_ timeout: TimeInterval, for states: ApplicationState…)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment