Last active
April 23, 2021 01:36
Revisions
-
mathonsunday revised this gist
Apr 23, 2021 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ func testShowPinsAtMaxZoomLevel() { XCTContext.runActivity(named: "Always show pins at the max zoom level") { _ in CompassLauncher().account(.nycAgent).launch().verifyMore() TabBarBot() .search() -
mathonsunday revised this gist
Apr 23, 2021 . 1 changed file with 1 addition and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,5 @@ func testShowPinsAtMaxZoomLevel() { XCTContext.runActivity(id: 3352275, named: "Always show pins at the max zoom level") { _ in CompassLauncher().account(.nycAgent).launch().verifyMore() TabBarBot() .search() -
mathonsunday revised this gist
Apr 23, 2021 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,6 @@ func testShowPinsAtMaxZoomLevel() { XCTContext.runActivity(id: 3352275, named: "Map Validation Pin: Always show pins at the max zoom level") { _ in CompassLauncher().account(.nycAgent).launch().verifyMore() TabBarBot() .search() -
mathonsunday created this gist
Apr 22, 2021 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ func testShowPinsAtMaxZoomLevel() { XCTContext.runActivity(id: 3352275, named: "Map Validation Pin: 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) } }