| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #import <EarlGrey/EarlGrey.h> | 5 #import <EarlGrey/EarlGrey.h> |
| 6 | 6 |
| 7 #import "ios/showcase/test/showcase_matchers.h" |
| 7 #import "ios/showcase/test/showcase_test_case.h" | 8 #import "ios/showcase/test/showcase_test_case.h" |
| 8 | 9 |
| 9 #if !defined(__has_feature) || !__has_feature(objc_arc) | 10 #if !defined(__has_feature) || !__has_feature(objc_arc) |
| 10 #error "This file requires ARC support." | 11 #error "This file requires ARC support." |
| 11 #endif | 12 #endif |
| 12 | 13 |
| 13 // Tests for the tab grid view controller. | 14 // Tests for the tab grid view controller. |
| 14 @interface SCTabGridTestCase : ShowcaseTestCase | 15 @interface SCTabGridTestCase : ShowcaseTestCase |
| 15 @end | 16 @end |
| 16 | 17 |
| 17 @implementation SCTabGridTestCase | 18 @implementation SCTabGridTestCase |
| 18 | 19 |
| 19 // Tests launching TabGridViewController and tapping a cell. | 20 // Tests launching TabGridViewController and tapping a cell. |
| 20 - (void)testLaunchAndTappingCell { | 21 - (void)testLaunchAndTappingCell { |
| 21 // TODO(crbug.com/687865): enable the test. It was flaky on device. | 22 // TODO(crbug.com/687865): enable the test. It was flaky on device. |
| 22 #if !TARGET_IPHONE_SIMULATOR | 23 #if !TARGET_IPHONE_SIMULATOR |
| 23 EARL_GREY_TEST_DISABLED( | 24 EARL_GREY_TEST_DISABLED( |
| 24 @"Disabled for devices because it is flaky on iPhone"); | 25 @"Disabled for devices because it is flaky on iPhone"); |
| 25 #endif | 26 #endif |
| 26 [[EarlGrey selectElementWithMatcher:grey_text(@"TabGridViewController")] | 27 [[EarlGrey selectElementWithMatcher:grey_text(@"TabGridViewController")] |
| 27 performAction:grey_tap()]; | 28 performAction:grey_tap()]; |
| 28 [[EarlGrey selectElementWithMatcher:grey_accessibilityID(@"Tab 0_button")] | 29 [[EarlGrey selectElementWithMatcher:grey_accessibilityID(@"Tab 0_button")] |
| 29 performAction:grey_tap()]; | 30 performAction:grey_tap()]; |
| 30 [[EarlGrey selectElementWithMatcher:grey_text(@"TabCommands")] | 31 [[EarlGrey selectElementWithMatcher:grey_text(@"TabCommands")] |
| 31 assertWithMatcher:grey_notNil()]; | 32 assertWithMatcher:grey_notNil()]; |
| 32 [[EarlGrey selectElementWithMatcher:grey_accessibilityLabel( | 33 [[EarlGrey selectElementWithMatcher:grey_accessibilityLabel( |
| 33 @"protocol_alerter_done")] | 34 @"protocol_alerter_done")] |
| 34 performAction:grey_tap()]; | 35 performAction:grey_tap()]; |
| 36 [[EarlGrey selectElementWithMatcher:showcase_matchers::FirstLevelBackButton()] |
| 37 performAction:grey_tap()]; |
| 35 } | 38 } |
| 36 | 39 |
| 37 @end | 40 @end |
| OLD | NEW |