Commit 679eb796 authored by stkhapugin's avatar stkhapugin Committed by Commit Bot

[iOS] Disable failing tests.

Disables the following tests:
FormsTestCase / testPostFormEntryWithKeyboard
TabOrderTestCase / testChildTabOrdering

Bug: 1106741, 1106739
Change-Id: I61f2f1ded92223d8ce25fcd5a7c08ba33ad68afa
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2304583
Auto-Submit: Stepan Khapugin <stkhapugin@chromium.org>
Commit-Queue: Sylvain Defresne <sdefresne@chromium.org>
Reviewed-by: default avatarSylvain Defresne <sdefresne@chromium.org>
Cr-Commit-Position: refs/heads/master@{#789491}
parent 7c6430c1
...@@ -528,7 +528,8 @@ id<GREYMatcher> ResendPostButtonMatcher() { ...@@ -528,7 +528,8 @@ id<GREYMatcher> ResendPostButtonMatcher() {
// Tests that submitting a POST-based form by tapping the 'Go' button on the // Tests that submitting a POST-based form by tapping the 'Go' button on the
// keyboard navigates to the correct URL and the back button works as expected // keyboard navigates to the correct URL and the back button works as expected
// afterwards. // afterwards.
- (void)testPostFormEntryWithKeyboard { // TODO(crbug.com/1106741): reenable this test.
- (void)DISABLED_testPostFormEntryWithKeyboard {
// Test fails on iPad Air 2 13.4 crbug.com/1102608. // Test fails on iPad Air 2 13.4 crbug.com/1102608.
if ([ChromeEarlGrey isIPadIdiom] && base::ios::IsRunningOnOrLater(13, 0, 0)) { if ([ChromeEarlGrey isIPadIdiom] && base::ios::IsRunningOnOrLater(13, 0, 0)) {
EARL_GREY_TEST_DISABLED(@"Fails in iOS 13 on iPads."); EARL_GREY_TEST_DISABLED(@"Fails in iOS 13 on iPads.");
......
...@@ -47,7 +47,8 @@ const char kLinksTestURL2Text[] = "arrived"; ...@@ -47,7 +47,8 @@ const char kLinksTestURL2Text[] = "arrived";
@implementation TabOrderTestCase @implementation TabOrderTestCase
// Tests that new tabs are always inserted after their parent tab. // Tests that new tabs are always inserted after their parent tab.
- (void)testChildTabOrdering { // TODO(crbug.com/1106739): reenable this test.
- (void)DISABLED_testChildTabOrdering {
GREYAssertTrue(self.testServer->Start(), @"Test server failed to start."); GREYAssertTrue(self.testServer->Start(), @"Test server failed to start.");
const GURL URL1 = self.testServer->GetURL(kLinksTestURL1); const GURL URL1 = self.testServer->GetURL(kLinksTestURL1);
......
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