Skip to content

Instantly share code, notes, and snippets.

@mathonsunday
Last active April 23, 2021 01:36
Show Gist options
  • Save mathonsunday/ddbdfcc8dc0652d406e5997eb76790a2 to your computer and use it in GitHub Desktop.
Save mathonsunday/ddbdfcc8dc0652d406e5997eb76790a2 to your computer and use it in GitHub Desktop.
func testShowPinsAtMaxZoomLevel() {
XCTContext.runActivity(named: "Always show pins at the max zoom level") { _ in
CompassLauncher().account(.nycAgent).launch().verifyMore()
TabBarBot()
.search()
.tap(.searchBarTextField)
.enterText("East Village")
SearchSuggestBot()
.tap(.neighborhood)
MapBot()
.assert(hasClusters: true)
.assert(hasPricePins: false)
.zoomIn(scale: 10)
.assert(hasClusters: false)
.assert(hasPricePins: true)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment