Created
November 9, 2015 12:48
-
-
Save catehstn/3737ef30a7254dc0b20f 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
- (void)testChooseImageAndRotate { | |
XCUIDevice *device = [XCUIDevice sharedDevice]; | |
[[app_ buttons][[SHAStrings galleryButtonTitleString]] tap]; | |
[[[app_ tables] buttons][@"Moments"] tap]; | |
[[[app_ collectionViews] cells][@"Photo, Landscape, August 08, 2012, 7:52 PM"] tap]; | |
[self verifyEditPageButtonsVisible]; | |
[device setOrientation:UIDeviceOrientationLandscapeRight]; | |
[self verifyEditPageButtonsNotVisible]; | |
[device setOrientation:UIDeviceOrientationPortrait]; | |
[self verifyEditPageButtonsVisible]; | |
[device setOrientation:UIDeviceOrientationLandscapeLeft]; | |
[self verifyEditPageButtonsNotVisible]; | |
// Return to portrait. | |
[device setOrientation:UIDeviceOrientationPortrait]; | |
// Go back to Home Page. | |
[[[[[app_ navigationBars][@"Edit"] childrenMatchingType:XCUIElementTypeButton] | |
matchingIdentifier:@"Back"] elementBoundByIndex:0] tap]; | |
[self verifyHomePageButtons]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment