Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(968)

Side by Side Diff: ios/chrome/browser/ui/settings/accounts_collection_egtest.mm

Issue 2722693002: [ios] Creates ToolsMenuConstants file (Closed)
Patch Set: Rebase Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 #import <XCTest/XCTest.h> 6 #import <XCTest/XCTest.h>
7 7
8 #include "base/strings/sys_string_conversions.h" 8 #include "base/strings/sys_string_conversions.h"
9 #include "components/signin/core/browser/signin_manager.h" 9 #include "components/signin/core/browser/signin_manager.h"
10 #include "components/strings/grit/components_strings.h" 10 #include "components/strings/grit/components_strings.h"
11 #include "ios/chrome/browser/signin/signin_manager_factory.h" 11 #include "ios/chrome/browser/signin/signin_manager_factory.h"
12 #import "ios/chrome/browser/ui/settings/accounts_collection_view_controller.h" 12 #import "ios/chrome/browser/ui/settings/accounts_collection_view_controller.h"
13 #import "ios/chrome/browser/ui/settings/settings_collection_view_controller.h" 13 #import "ios/chrome/browser/ui/settings/settings_collection_view_controller.h"
14 #import "ios/chrome/browser/ui/tools_menu/tools_menu_view_controller.h" 14 #include "ios/chrome/browser/ui/tools_menu/tools_menu_constants.h"
15 #import "ios/chrome/browser/ui/tools_menu/tools_popup_controller.h" 15 #import "ios/chrome/browser/ui/tools_menu/tools_popup_controller.h"
16 #include "ios/chrome/grit/ios_strings.h" 16 #include "ios/chrome/grit/ios_strings.h"
17 #import "ios/chrome/test/app/chrome_test_util.h" 17 #import "ios/chrome/test/app/chrome_test_util.h"
18 #import "ios/chrome/test/earl_grey/chrome_earl_grey_ui.h" 18 #import "ios/chrome/test/earl_grey/chrome_earl_grey_ui.h"
19 #import "ios/chrome/test/earl_grey/chrome_matchers.h" 19 #import "ios/chrome/test/earl_grey/chrome_matchers.h"
20 #import "ios/chrome/test/earl_grey/chrome_test_case.h" 20 #import "ios/chrome/test/earl_grey/chrome_test_case.h"
21 #import "ios/public/provider/chrome/browser/signin/fake_chrome_identity.h" 21 #import "ios/public/provider/chrome/browser/signin/fake_chrome_identity.h"
22 #import "ios/public/provider/chrome/browser/signin/fake_chrome_identity_service. h" 22 #import "ios/public/provider/chrome/browser/signin/fake_chrome_identity_service. h"
23 #import "ios/testing/earl_grey/disabled_test_macros.h" 23 #import "ios/testing/earl_grey/disabled_test_macros.h"
24 24
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 // Check that Account Settings screen is open and |identity| is signed in. 305 // Check that Account Settings screen is open and |identity| is signed in.
306 [[EarlGrey selectElementWithMatcher:grey_accessibilityID(kSettingsAccountsId)] 306 [[EarlGrey selectElementWithMatcher:grey_accessibilityID(kSettingsAccountsId)]
307 assertWithMatcher:grey_sufficientlyVisible()]; 307 assertWithMatcher:grey_sufficientlyVisible()];
308 AssertAuthenticatedIdentityInActiveProfile(identity); 308 AssertAuthenticatedIdentityInActiveProfile(identity);
309 309
310 // Close Settings. 310 // Close Settings.
311 TapButtonWithLabelId(IDS_IOS_NAVIGATION_BAR_DONE_BUTTON); 311 TapButtonWithLabelId(IDS_IOS_NAVIGATION_BAR_DONE_BUTTON);
312 } 312 }
313 313
314 @end 314 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698