Skip to content

Commit

Permalink
feat: added func withTextContains returning XCUIElementQuery (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
valeriaalampi authored Apr 19, 2022
1 parent 5d28a03 commit e237687
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions XCode/Sources/UITests/XCTAssertion+.swift
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,11 @@ public extension XCUIElement {
let predicate = NSPredicate(format: "label CONTAINS[c] %@", value)
return staticTexts.containing(predicate).firstMatch
}

func withTextContains(_ value: String) -> XCUIElementQuery {
let predicate = NSPredicate(format: "label CONTAINS[c] %@", value)
return staticTexts.containing(predicate)
}
}

public extension String {
Expand Down

0 comments on commit e237687

Please sign in to comment.