| 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 #include "base/mac/foundation_util.h" | 7 #include "base/mac/foundation_util.h" |
| 8 #include "base/memory/ptr_util.h" | 8 #include "base/memory/ptr_util.h" |
| 9 #include "base/strings/stringprintf.h" | 9 #include "base/strings/stringprintf.h" |
| 10 #include "base/time/time.h" | 10 #include "base/time/time.h" |
| 11 #include "ios/chrome/browser/ui/ui_util.h" | 11 #include "ios/chrome/browser/ui/ui_util.h" |
| 12 #include "ios/chrome/test/app/navigation_test_util.h" | 12 #include "ios/chrome/test/app/navigation_test_util.h" |
| 13 #include "ios/chrome/test/app/web_view_interaction_test_util.h" | 13 #include "ios/chrome/test/app/web_view_interaction_test_util.h" |
| 14 #import "ios/chrome/test/earl_grey/chrome_earl_grey.h" | 14 #import "ios/chrome/test/earl_grey/chrome_earl_grey.h" |
| 15 #import "ios/chrome/test/earl_grey/chrome_earl_grey_ui.h" | 15 #import "ios/chrome/test/earl_grey/chrome_earl_grey_ui.h" |
| 16 #import "ios/chrome/test/earl_grey/chrome_matchers.h" | 16 #import "ios/chrome/test/earl_grey/chrome_matchers.h" |
| 17 #import "ios/chrome/test/earl_grey/chrome_test_case.h" | 17 #import "ios/chrome/test/earl_grey/chrome_test_case.h" |
| 18 #import "ios/testing/earl_grey/disabled_test_macros.h" | |
| 19 #import "ios/third_party/material_components_ios/src/components/ProgressView/src
/MaterialProgressView.h" | 18 #import "ios/third_party/material_components_ios/src/components/ProgressView/src
/MaterialProgressView.h" |
| 20 #import "ios/web/public/test/http_server.h" | 19 #import "ios/web/public/test/http_server.h" |
| 21 #import "ios/web/public/test/http_server_util.h" | 20 #import "ios/web/public/test/http_server_util.h" |
| 22 #include "ios/web/public/test/response_providers/html_response_provider.h" | 21 #include "ios/web/public/test/response_providers/html_response_provider.h" |
| 23 #include "url/gurl.h" | 22 #include "url/gurl.h" |
| 24 | 23 |
| 25 using chrome_test_util::WebViewContainingText; | 24 using chrome_test_util::WebViewContainingText; |
| 26 | 25 |
| 27 namespace { | 26 namespace { |
| 28 | 27 |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 assertWithMatcher:grey_notNil()]; | 249 assertWithMatcher:grey_notNil()]; |
| 251 | 250 |
| 252 chrome_test_util::SubmitWebViewFormWithId(kFormID); | 251 chrome_test_util::SubmitWebViewFormWithId(kFormID); |
| 253 | 252 |
| 254 // Verify progress view is not visible. | 253 // Verify progress view is not visible. |
| 255 [[EarlGrey selectElementWithMatcher:grey_kindOfClass([MDCProgressView class])] | 254 [[EarlGrey selectElementWithMatcher:grey_kindOfClass([MDCProgressView class])] |
| 256 assertWithMatcher:grey_notVisible()]; | 255 assertWithMatcher:grey_notVisible()]; |
| 257 } | 256 } |
| 258 | 257 |
| 259 @end | 258 @end |
| OLD | NEW |