Commit d5a7ba9d authored by Lan Wei's avatar Lan Wei Committed by Commit Bot

Disable testAddressesViewControllerContainsManageAddressesAction

AddressViewControllerTestCase/
testAddressesViewControllerContainsManageAddressesAction fails on
ios-simulator-full-configs,
https://ci.chromium.org/p/chromium/builders/ci/
ios-simulator-full-configs/b8872074450009779120
disable it for now until it is fixed.

TBR= javierrobles@chromium.org

Bug: 1116043
Change-Id: I76372c15e5031b4c4d8d5a1681eb0dfc1f041e23
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2354413Reviewed-by: default avatarLan Wei <lanwei@chromium.org>
Commit-Queue: Lan Wei <lanwei@chromium.org>
Cr-Commit-Position: refs/heads/master@{#797732}
parent 57606d76
...@@ -87,7 +87,15 @@ BOOL WaitForKeyboardToAppear() { ...@@ -87,7 +87,15 @@ BOOL WaitForKeyboardToAppear() {
// Tests that the addresses view controller contains the "Manage Addresses..." // Tests that the addresses view controller contains the "Manage Addresses..."
// action. // action.
- (void)testAddressesViewControllerContainsManageAddressesAction { // TODO(crbug.com/1116043): Flaky on ios simulator.
#if TARGET_IPHONE_SIMULATOR
#define MAYBE_testAddressesViewControllerContainsManageAddressesAction \
DISABLED_testAddressesViewControllerContainsManageAddressesAction
#else
#define MAYBE_testAddressesViewControllerContainsManageAddressesAction \
testAddressesViewControllerContainsManageAddressesAction
#endif
- (void)MAYBE_testAddressesViewControllerContainsManageAddressesAction {
// Bring up the keyboard. // Bring up the keyboard.
[[EarlGrey selectElementWithMatcher:chrome_test_util::WebViewMatcher()] [[EarlGrey selectElementWithMatcher:chrome_test_util::WebViewMatcher()]
performAction:chrome_test_util::TapWebElementWithId(kFormElementName)]; performAction:chrome_test_util::TapWebElementWithId(kFormElementName)];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment