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

Unified Diff: ios/web/shell/test/web_shell_navigation_egtest.mm

Issue 1828143007: Web shell integration test suite. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Wrong GENERATOR plus some of Sylvain comments, but not all Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ios/web/ios_web_shell_tests.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/web/shell/test/web_shell_navigation_egtest.mm
diff --git a/ios/web/shell/test/web_shell_navigation_egtest.mm b/ios/web/shell/test/web_shell_navigation_egtest.mm
new file mode 100644
index 0000000000000000000000000000000000000000..38936aecbe8e41e3afd7e501e2542f321e2b89c4
--- /dev/null
+++ b/ios/web/shell/test/web_shell_navigation_egtest.mm
@@ -0,0 +1,65 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#import <UIKit/UIKit.h>
+#import <XCTest/XCTest.h>
+
+#import <EarlGrey/EarlGrey.h>
+
+#import "ios/web/shell/view_controller.h"
+
+@interface CRWWebShellNavigationTest : XCTestCase
+
+@end
+
+@implementation CRWWebShellNavigationTest
+
+// Sample test to load a live URL, go back and then forward.
+- (void)testExternalURLBackAndForward {
+ [[EarlGrey
+ selectElementWithMatcher:grey_accessibilityLabel(
+ kWebShellAddressFieldAccessibilityLabel)]
+ performAction:grey_tap()];
+ [[EarlGrey selectElementWithMatcher:grey_accessibilityLabel(@"Clear text")]
+ performAction:grey_tap()];
+ [[EarlGrey
+ selectElementWithMatcher:grey_accessibilityLabel(
+ kWebShellAddressFieldAccessibilityLabel)]
+ performAction:grey_typeText(@"http://browsingtest.appspot.com\n")];
+ [[EarlGrey
+ selectElementWithMatcher:grey_accessibilityLabel(
+ kWebShellBackButtonAccessibilityLabel)]
+ performAction:grey_tap()];
+ [[EarlGrey
+ selectElementWithMatcher:grey_accessibilityLabel(
+ kWebShellForwardButtonAccessibilityLabel)]
+ performAction:grey_tap()];
+}
+
+// Sample test to load a live URL, go back, forward, and then back again.
+- (void)testExternalURLBackAndForwardAndBack {
+ [[EarlGrey
+ selectElementWithMatcher:grey_accessibilityLabel(
+ kWebShellAddressFieldAccessibilityLabel)]
+ performAction:grey_tap()];
+ [[EarlGrey selectElementWithMatcher:grey_accessibilityLabel(@"Clear text")]
+ performAction:grey_tap()];
+ [[EarlGrey
+ selectElementWithMatcher:grey_accessibilityLabel(
+ kWebShellAddressFieldAccessibilityLabel)]
+ performAction:grey_typeText(@"http://browsingtest.appspot.com\n")];
+ [[EarlGrey
+ selectElementWithMatcher:grey_accessibilityLabel(
+ kWebShellBackButtonAccessibilityLabel)]
+ performAction:grey_tap()];
+ [[EarlGrey
+ selectElementWithMatcher:grey_accessibilityLabel(
+ kWebShellForwardButtonAccessibilityLabel)]
+ performAction:grey_tap()];
+ [[EarlGrey
+ selectElementWithMatcher:grey_accessibilityLabel(
+ kWebShellBackButtonAccessibilityLabel)]
+ performAction:grey_tap()];
+}
+@end
« no previous file with comments | « ios/web/ios_web_shell_tests.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698