Skip to content

Instantly share code, notes, and snippets.

@joecks
Created January 2, 2018 15:43
Show Gist options
  • Save joecks/07464884d81d6d7486f4a244be40eb97 to your computer and use it in GitHub Desktop.
Save joecks/07464884d81d6d7486f4a244be40eb97 to your computer and use it in GitHub Desktop.
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