Created
January 2, 2018 15:43
-
-
Save joecks/07464884d81d6d7486f4a244be40eb97 to your computer and use it in GitHub Desktop.
This file contains 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
class OpenRideMapTest : BaseRobotTest( | |
mockDependencyTestRule = mock(locationFound()), | |
testCase = | |
{ | |
inLanding { | |
inLandingList { | |
inItem(2) { click() } | |
} | |
} | |
inDetails { | |
inRidesGoThereList { | |
inItem(2) { click() } | |
} | |
} | |
inRideDetails { | |
inRideMapButton { click() } | |
} | |
inRideMap { | |
inTitleBar { | |
hasText("Ride go there 2") | |
} | |
} | |
} | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment