summaryrefslogtreecommitdiffstats
path: root/ios/web/shell/test/web_shell_navigation_egtest.mm
blob: 38936aecbe8e41e3afd7e501e2542f321e2b89c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
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