Commit 2a5b2789 authored by Erik Arvidsson's avatar Erik Arvidsson

Disable testSelectActionBarClearedOnTappingInput

[FAIL] org.chromium.content.browser.input.ImeTest#testSelectActionBarClearedOnTappingInput:
junit.framework.AssertionFailedError
  at org.chromium.content.browser.input.ImeTest.assertWaitForSelectActionBarStatus(ImeTest.java:698)
  at org.chromium.content.browser.input.ImeTest.testSelectActionBarClearedOnTappingInput(ImeTest.java:206)
  at java.lang.reflect.Method.invokeNative(Native Method)
  at android.test.InstrumentationTestCase.runMethod(InstrumentationTestCase.java:214)
  at android.test.InstrumentationTestCase.runTest(InstrumentationTestCase.java:199)
  at android.test.ActivityInstrumentationTestCase2.runTest(ActivityInstrumentationTestCase2.java:192)
  at org.chromium.content_shell_apk.ContentShellTestBase.runTest(ContentShellTestBase.java:227)
  at android.test.AndroidTestRunner.runTest(AndroidTestRunner.java:191)
  at android.test.AndroidTestRunner.runTest(AndroidTestRunner.java:176)
  at android.test.InstrumentationTestRunner.onStart(InstrumentationTestRunner.java:554)
  at android.app.Instrumentation$InstrumentationThread.run(Instrumentation.java:1701)

BUG=412004
TBR=keishi, jdduke, aurimas

Review URL: https://codereview.chromium.org/553833003

Cr-Commit-Position: refs/heads/master@{#293765}
parent 1235e51c
...@@ -18,6 +18,7 @@ import android.view.View; ...@@ -18,6 +18,7 @@ import android.view.View;
import android.view.inputmethod.EditorInfo; import android.view.inputmethod.EditorInfo;
import org.chromium.base.ThreadUtils; import org.chromium.base.ThreadUtils;
import org.chromium.base.test.util.DisabledTest;
import org.chromium.base.test.util.Feature; import org.chromium.base.test.util.Feature;
import org.chromium.base.test.util.UrlUtils; import org.chromium.base.test.util.UrlUtils;
import org.chromium.content.browser.ContentViewCore; import org.chromium.content.browser.ContentViewCore;
...@@ -195,8 +196,11 @@ public class ImeTest extends ContentShellTestBase { ...@@ -195,8 +196,11 @@ public class ImeTest extends ContentShellTestBase {
assertWaitForSelectActionBarStatus(true); assertWaitForSelectActionBarStatus(true);
} }
/*
@SmallTest @SmallTest
@Feature({"TextInput"}) @Feature({"TextInput"})
*/
@DisabledTest
public void testSelectActionBarClearedOnTappingInput() throws Exception { public void testSelectActionBarClearedOnTappingInput() throws Exception {
commitText(mConnection, "Sample Text", 1); commitText(mConnection, "Sample Text", 1);
DOMUtils.longPressNode(this, mContentViewCore, "input_text"); DOMUtils.longPressNode(this, mContentViewCore, "input_text");
......
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