Created
April 22, 2021 20:47
-
-
Save mathonsunday/5b9384f7b6e03103d81fe8abe822f6b3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MapBot: Robot, RobotItem { | |
... | |
@discardableResult | |
public func tapAnyCluster() -> MapBot { | |
app.otherElements[mapViewAccessibilityIdentifier] | |
.descendants(matching: .any) | |
.allElementsBoundByIndex | |
.first(where: { $0.label.contains(clusterIdentifier) })? | |
.tap() | |
return self | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment