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

Side by Side Diff: ios/chrome/test/earl_grey/chrome_earl_grey.h

Issue 2798773002: Create ChromeEarlGrey waitForWebViewContainingText. (Closed)
Patch Set: better formatting Created 3 years, 8 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 #ifndef IOS_CHROME_TEST_EARL_GREY_CHROME_EARL_GREY_H_ 5 #ifndef IOS_CHROME_TEST_EARL_GREY_CHROME_EARL_GREY_H_
6 #define IOS_CHROME_TEST_EARL_GREY_CHROME_EARL_GREY_H_ 6 #define IOS_CHROME_TEST_EARL_GREY_CHROME_EARL_GREY_H_
7 7
8 #import <EarlGrey/EarlGrey.h> 8 #import <EarlGrey/EarlGrey.h>
9 9
10 #include "url/gurl.h" 10 #include "url/gurl.h"
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 + (void)waitForStaticHTMLViewContainingText:(NSString*)text; 72 + (void)waitForStaticHTMLViewContainingText:(NSString*)text;
73 73
74 // Waits for there to be no static html view, or a static html view that does 74 // Waits for there to be no static html view, or a static html view that does
75 // not contain |text|. If the condition is not met within a timeout, a 75 // not contain |text|. If the condition is not met within a timeout, a
76 // GREYAssert is induced. 76 // GREYAssert is induced.
77 + (void)waitForStaticHTMLViewNotContainingText:(NSString*)text; 77 + (void)waitForStaticHTMLViewNotContainingText:(NSString*)text;
78 78
79 // Waits for a Chrome error page. If it is not found within a timeout, a 79 // Waits for a Chrome error page. If it is not found within a timeout, a
80 // GREYAssert is induced. 80 // GREYAssert is induced.
81 + (void)waitForErrorPage; 81 + (void)waitForErrorPage;
82
83 // Waits for the current web view to contain |text|. If the condition is not met
84 // within a timeout, a GREYAssert is induced.
85 + (void)waitForWebViewContainingText:(NSString*)text;
Eugene But (OOO till 7-30) 2017/04/21 18:49:21 Is there a reason why this takes NSString and not
baxley 2017/04/21 20:09:01 I went back and forth on this. All the methods in
Eugene But (OOO till 7-30) 2017/04/21 21:37:45 |loadURL:| takes GURL, instead of NSURL, so using
baxley 2017/04/21 22:41:58 I'll look at it a little more and think about it.
82 @end 86 @end
83 87
84 #endif // IOS_CHROME_TEST_EARL_GREY_CHROME_EARL_GREY_H_ 88 #endif // IOS_CHROME_TEST_EARL_GREY_CHROME_EARL_GREY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698