| 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_eg_utils.h" | 7 #import "ios/showcase/test/showcase_eg_utils.h" |
| 8 #import "ios/showcase/test/showcase_test_case.h" | 8 #import "ios/showcase/test/showcase_test_case.h" |
| 9 | 9 |
| 10 #if !defined(__has_feature) || !__has_feature(objc_arc) | 10 #if !defined(__has_feature) || !__has_feature(objc_arc) |
| 11 #error "This file requires ARC support." | 11 #error "This file requires ARC support." |
| 12 #endif | 12 #endif |
| 13 | 13 |
| 14 // Tests for the tab grid view controller. | 14 // Tests for the tab grid view controller. |
| 15 @interface SCTabGridTestCase : ShowcaseTestCase | 15 @interface SCTabGridTestCase : ShowcaseTestCase |
| 16 @end | 16 @end |
| 17 | 17 |
| 18 @implementation SCTabGridTestCase | 18 @implementation SCTabGridTestCase |
| 19 | 19 |
| 20 // Tests launching TabGridViewController and tapping a cell. | 20 // Tests launching TabGridViewController and tapping a cell. |
| 21 - (void)testLaunchAndTappingCell { | 21 // TODO(crbug.com/710662): re-enable this test. |
| 22 - (void)FLAKY_testLaunchAndTappingCell { |
| 22 showcase_utils::Open(@"TabGridViewController"); | 23 showcase_utils::Open(@"TabGridViewController"); |
| 23 [[EarlGrey selectElementWithMatcher:grey_accessibilityID(@"Tab 0_button")] | 24 [[EarlGrey selectElementWithMatcher:grey_accessibilityID(@"Tab 0_button")] |
| 24 performAction:grey_tap()]; | 25 performAction:grey_tap()]; |
| 25 [[EarlGrey selectElementWithMatcher:grey_text(@"TabGridCommands")] | 26 [[EarlGrey selectElementWithMatcher:grey_text(@"TabGridCommands")] |
| 26 assertWithMatcher:grey_notNil()]; | 27 assertWithMatcher:grey_notNil()]; |
| 27 [[EarlGrey selectElementWithMatcher:grey_accessibilityLabel( | 28 [[EarlGrey selectElementWithMatcher:grey_accessibilityLabel( |
| 28 @"protocol_alerter_done")] | 29 @"protocol_alerter_done")] |
| 29 performAction:grey_tap()]; | 30 performAction:grey_tap()]; |
| 30 showcase_utils::Close(); | 31 showcase_utils::Close(); |
| 31 } | 32 } |
| 32 | 33 |
| 33 @end | 34 @end |
| OLD | NEW |