测试我正在尝试:进行购买,记下标题,然后返回到主页活动,然后按“home_image”这是一个图像按钮.

我的问题是我无法导航home_image.我按它,我得到一个伪造的重复ID.我相信重复ID是指具有相同ID的不可见片段.为什么在测试开始时不是问题很奇怪.由于文本限制,抱歉不得不截断日志.
我想做的就是直接启动家庭活动,但这个套件只是做一件简单事情的痛苦.即使是滑动命令也会出现此错误!第一次通过所有这些按钮工作,我认为这是浓缩咖啡的一个错误,我需要一个解决方案.

谢谢你的想法!

mSectionsPagerAdapter = new SectionsPagerAdapter( getFragmentManager() );

    // Set up the ViewPager with the sections adapter.
    mViewPager = (ViewPagerExtended) findViewById( R.id.pager );
    mViewPager.setAdapter( mSectionsPagerAdapter );
    mViewPager.setSwipeEnabled( true );

    final ImageButton homeImageButton = (ImageButton) findViewById( R.id.home_image );
    final ImageButton exploreImageButton = (ImageButton) findViewById( R.id.explore_image );
    final ImageButton profileImageButton = (ImageButton) findViewById( R.id.profile_image );

    mViewPager.setonPagechangelistener( new ViewPager.SimpleOnPagechangelistener()
    {
        @Override
        public void onPageSelected( int position )
        {
            switch ( position )
            {
                case 0:
                    homeImageButton.setimageResource( R.drawable.home_icon );
                    exploreImageButton.setimageResource( R.drawable.explore_icon_inactive );
                    profileImageButton.setimageResource( R.drawable.profile_icon_inactive );
                    break;
                case 1:
                    homeImageButton.setimageResource( R.drawable.home_icon_inactive );
                    exploreImageButton.setimageResource( R.drawable.explore_icon );
                    profileImageButton.setimageResource( R.drawable.profile_icon_inactive );
                    break;
                case 2:
                    homeImageButton.setimageResource( R.drawable.home_icon_inactive );
                    exploreImageButton.setimageResource( R.drawable.explore_icon_inactive );
                    profileImageButton.setimageResource( R.drawable.profile_icon );
                    break;
            }
        }
    } );

    homeImageButton.setonClickListener( new View.OnClickListener()
    {
        @Override
        public void onClick( View v )
        {
            mViewPager.setCurrentItem( 0 );
        }
    } );

    exploreImageButton.setonClickListener( new View.OnClickListener()
    {
        @Override
        public void onClick( View v )
        {
            mViewPager.setCurrentItem( 1 );
        }
    } );

    profileImageButton.setonClickListener( new View.OnClickListener()
    {
        @Override
        public void onClick( View v )
        {
            mViewPager.setCurrentItem( 2 );
        }
    } );

//这里的布局

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:app="http://schemas.android.com/apk/res-auto"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:tag="default"
            android:id="@+id/home"
    >

<LinearLayout
        android:id="@+id/tab_bar"
        android:layout_width="match_parent" android:layout_height="48dp"
        android:background="@color/****_orange_light"
        android:gravity="center"
        >

    <ImageButton
            android:id="@+id/home_image"
            android:layout_width="0dp" android:layout_height="match_parent"
            android:src="@drawable/home_icon"
            android:layout_weight="1"
            android:background="#00000000"
            />
    <ImageButton
            android:id="@+id/explore_image"
            android:layout_width="0dp" android:layout_height="match_parent"
            android:src="@drawable/explore_icon_inactive"
            android:layout_weight="1"
            android:background="#00000000"
            />
    <ImageButton
            android:id="@+id/profile_image"
            android:layout_width="0dp" android:layout_height="match_parent"
            android:src="@drawable/profile_icon_inactive"
            android:layout_weight="1"
            android:background="#00000000"
            />

    <android.support.v7.app.MediaRouteButton
            android:id="@+id/media_route_button"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:mediaRouteTypes="user"
            android:visibility="gone"

//测试输出

Running tests
Test running started
android.support.test.espresso.AmbiguousViewMatcherException: 'with id: com.*******.main:id/home_image' matches multiple views in the hierarchy.
Problem views are marked with '****MATCHES****' below.

View Hierarchy:
+>DecorView{id=-1,visibility=VISIBLE,width=1080,height=1776,has-focus=true,has-focusable=true,has-window-focus=true,is-clickable=false,is-enabled=true,is-focused=false,is-focusable=false,is-layout-requested=false,is-selected=false,root-is-layout-requested=false,has-input-connection=false,x=0.0,y=0.0,child-count=1}
|
+->LinearLayout{id=-1,child-count=2}
|
+-->ViewStub{id=16909070,visibility=GONE,width=0,height=0,has-focus=false,has-focusable=false,is-layout-requested=true,y=0.0}
|
+-->FrameLayout{id=-1,height=1701,y=75.0,child-count=1}
|
+--->FitwindowsLinearLayout{id=2131492941,res-name=action_bar_root,child-count=2}
|
+---->ViewStubCompat{id=2131492942,res-name=action_mode_bar_stub,y=0.0}
|
+---->NativeActionModeAwareLayout{id=16908290,res-name=content,child-count=1}
|
+----->RelativeLayout{id=2131492921,res-name=home,child-count=2}
|
+------>LinearLayout{id=2131493015,res-name=tab_bar,height=144,child-count=4}
|
+------->ImageButton{id=2131493016,res-name=home_image,width=360,is-clickable=true,is-focusable=true,y=0.0} ****MATCHES****
|
+------->ImageButton{id=2131493017,res-name=explore_image,x=360.0,y=0.0}
|
+------->ImageButton{id=2131493018,res-name=profile_image,x=720.0,y=0.0}
|
+------->MediaRouteButton{id=2131493019,res-name=media_route_button,desc=Cast,is-enabled=false,y=0.0}
|
+------>ViewPagerExtended{id=2131493020,res-name=pager,height=1557,y=144.0,child-count=3}
|
+------->LinearLayout{id=2131493215,res-name=fragment_member_home,x=-1080.0,child-count=3}
|
+-------->PagerSlidingTabStrip{id=2131493216,res-name=member_home_tabs,child-count=1}
|
+--------->LinearLayout{id=-1,child-count=2}
|
+---------->TextView{id=-1,text=MY CLASSES,input-type=0,ime-target=false,has-links=false}
|
+---------->TextView{id=-1,text=MY PATTERNS,has-links=false}
|
+-------->View{id=-1,height=3,y=0.0}
|
+-------->ViewPagerExtended{id=2131493217,res-name=member_home_view_pager,height=1554,y=3.0,child-count=2}
|
+--------->RelativeLayout{id=-1,child-count=2}
|
+---------->SwipeRefreshLayout{id=2131493222,res-name=swipe_container,child-count=2}
|
+----------->CircleImageView{id=-1,width=140,height=140,x=470.0,y=-140.0}
|
+----------->ListView{id=2131493178,res-name=courseGridView,child-count=1}
|
+------------>LinearLayout{id=-1,height=905,child-count=1}
|
+------------->RelativeLayout{id=2131493121,res-name=courseGridCell,child-count=6}
|
+-------------->FrameLayout{id=2131493122,res-name=courseImageFrame,height=613,child-count=2}
|
+--------------->DynamicNetworkImageView{id=2131493123,res-name=courseImage,y=0.0}
|
+--------------->ImageView{id=2131493124,res-name=playButtonImage,width=168,height=169,x=456.0,y=222.0}
|
+-------------->FontTextView{id=2131493125,res-name=titleText,width=936,height=166,x=72.0,y=613.0,text=40 Techniques Every Sewer Should KNow,has-links=false}
|
+-------------->FontTextView{id=2131493126,res-name=instructorText,width=376,height=105,y=779.0,text=with Gail Yellen,has-links=false}
|
+-------------->View{id=2131493127,res-name=horizontalLine1,y=884.0}
|
+-------------->View{id=2131493128,res-name=footer_divider,y=884.0}
|
+-------------->View{id=-1,height=18,y=887.0}
|
+---------->SwipeRefreshLayout{id=2131493218,res-name=swipe_refresh_empty_container,y=0.0}
|
+----------->ScrollView{id=-1,child-count=1}
|
+------------>LinearLayout{id=2131493219,res-name=not_enrolled_ui,child-count=4}
|
+------------->ImageView{id=2131493016,y=0.0} ****MATCHES****
|
+------------->TextView{id=-1,text=Welcome to *****. Looks like you aren't enrolled in any classes yet.,has-links=false}
|
+------------->Button{id=2131493220,res-name=explore_****_link,text=Explore Classes,has-links=false}
|
+------------->IconButton{id=2131493221,res-name=commercial_button,text=Play Commercial,has-links=false}
|
+--------->FrameLayout{id=-1,x=1080.0,child-count=1}
|
+---------->RecyclerView{id=2131493227,res-name=recycler_view,child-count=0}
|
+------->LinearLayout{id=-1,child-count=1}
|
+-------->ListView{id=2131493190,res-name=categoryGridView,is-focused=true,child-count=3}
|
+--------->RelativeLayout{id=-1,height=504,child-count=3}
|
+---------->TextView{id=2131493267,res-name=explore_text,height=168,text=Explore,has-links=false}
|
+---------->LinearLayout{id=2131493268,res-name=linear_layout,y=168.0,child-count=2}
|
+----------->Button{id=2131493269,res-name=on_sale_button,width=513,x=18.0,text=On Sale,has-links=false}
|
+----------->Button{id=2131493270,res-name=free_button,x=549.0,text=Free,has-links=false}
|
+---------->TextView{id=2131493271,res-name=category_text,y=336.0,text=Categories,has-links=false}
|
+--------->LinearLayout{id=-1,height=540,y=504.0,child-count=2}
|

at dalvik.system.VMStack.getThreadStackTrace(Native Method)
at java.lang.Thread.getStackTrace(Thread.java:579)
at android.support.test.espresso.base.DefaultFailureHandler.getUserFriendlyError(DefaultFailureHandler.java:82)
at android.support.test.espresso.base.DefaultFailureHandler.handle(DefaultFailureHandler.java:53)
at android.support.test.espresso.ViewInteraction.runSynchronouslyOnUiThread(ViewInteraction.java:185)
at android.support.test.espresso.ViewInteraction.doPerform(ViewInteraction.java:115)
at android.support.test.espresso.ViewInteraction.perform(ViewInteraction.java:87)
at com.****.****.main.tests.purchase.BasePurchaseTest.testHelperSeeIfTitleInLibrary(BasePurchaseTest.java:91)
at com.****.****.main.tests.purchase.PurchaseTests.testPurchaseIsIngallery(PurchaseTests.java:184)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
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 junit.framework.TestCase.runBare(TestCase.java:134)
at junit.framework.TestResult$1.protect(TestResult.java:115)
at junit.framework.TestResult.runProtected(TestResult.java:133)
at android.support.test.internal.runner.junit3.DelegatingTestResult.runProtected(DelegatingTestResult.java:90)
at junit.framework.TestResult.run(TestResult.java:118)
at android.support.test.internal.runner.junit3.AndroidTestResult.run(AndroidTestResult.java:49)
at junit.framework.TestCase.run(TestCase.java:124)
at android.support.test.internal.runner.junit3.NonLeakyTestSuite$NonLeakyTest.run(NonLeakyTestSuite.java:63)
at junit.framework.TestSuite.runTest(TestSuite.java:243)
at junit.framework.TestSuite.run(TestSuite.java:238)
at android.support.test.internal.runner.junit3.DelegatingTestSuite.run(DelegatingTestSuite.java:103)
at android.support.test.internal.runner.junit3.AndroidTestSuite.run(AndroidTestSuite.java:63)
at android.support.test.internal.runner.junit3.JUnit38ClassRunner.run(JUnit38ClassRunner.java:90)
at org.junit.runners.Suite.runchild(Suite.java:128)
at org.junit.runners.Suite.runchild(Suite.java:24)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:231)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:60)
at org.junit.runners.ParentRunner.runchildren(ParentRunner.java:229)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:50)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:222)
at org.junit.runners.ParentRunner.run(ParentRunner.java:300)
at org.junit.runner.JUnitCore.run(JUnitCore.java:157)
at org.junit.runner.JUnitCore.run(JUnitCore.java:136)
at android.support.test.runner.AndroidJUnitRunner.onStart(AndroidJUnitRunner.java:270)
at android.app.Instrumentation$InstrumentationThread.run(Instrumentation.java:1701)

解决方法

这不是Espresso中的错误.视图层次结构清楚地显示了具有相同ID的两个视图.这可能是由于视图位于ViewPager内部,而ViewPager是一个AdapterView.因此可以预期多个实例.

要解决此问题,请在匹配视图时更具体.仅仅通过ID无济于事.由于主页按钮的其他ImageView不可见,因为它的父级是GONE,您可以简单地匹配:

onView(allOf(withId(..),withEffectiveVisibility(VISIBLE))).perform(click());

android – 尝试单击导航按钮时Espresso AmbiguousViewMatcherException的更多相关文章

  1. Android studio – Faild to resolve:com.android.support:design:26.0.1错误

    我有一个错误叫:我的androidstudio版本是3.0beta1.我的gradle文件如下:我想把“设计”放到我的项目中,但我不能这样做.我该怎么做?解决方法尝试改变和或者不要更改为bulidToolsversion更改依赖项

  2. Android单元测试的正确方法

    我知道这对所有Android开发者来说都是一个乏味的话题.但究竟什么是Android测试的正确方法?解决方法这个问题和我的回答,与Android没有任何关系,但这是一件好事.我略微修改了你的假设,但原理是一样的.>70%单元测试>20%集成测试>10%UI测试应该是70%吗?最后,检查您的UI是否按预期工作.你在这个级别显示什么并不重要.只要在用户未登录您的罚款时显示登录屏幕.这通常被称为TestPyramid,是你所描述的,只是减去了明显的比例.

  3. android – 使用Robolectric测试ActionBarActivity时出错

    我正在使用Robolectric来测试我的应用程序中的活动.该活动扩展了ActionBaractivity.当我测试活动时,我得到错误:“IllegalStateException:你需要在这个活动中使用Theme.AppCompat主题(或后代).”我的测试环境是:AndroidStudio0.8.6,Robolectric2.4-SNAPSHOT,support-v4库版本20.0,appco

  4. android.test.AndroidTestCase中的方法setUp没有被模拟

    notmocked’错误,并建议将以下内容放入build.gradle:这可以在从命令行启动时运行测试但是当我使用rightclick从AndroidStudio运行测试类时–>跑.这样,我又得到了同样的错误:关于如何解决这个问题的任何想法?

  5. Android Studio中的Gradle Error:找不到ID为’com.android.library’的插件

    当我尝试在AndroidStudio中构建Android库项目时,我收到以下Gradle错误:我对Gradle很新,这对我来说很困惑.为什么会这样?build.gradle文件如下:解决方法您的问题是您使用的顶级文件无法使用此类插件.在AS中你有这样的结构:在您的顶级文件中,您可以使用:在lib/build.gradle中,您可以使用问题中发布的代码:最后在您的settings.gradle中你也可以参考thisquestion.

  6. android – Espresso – 点击对话框的按钮

    我想测试Android6的权限,但我找不到使用Espresso点击“允许”按钮的方法.有没有办法做到这一点?

  7. android – 尝试单击导航按钮时Espresso AmbiguousViewMatcherException

    //这里的布局//测试输出解决方法这不是Espresso中的错误.视图层次结构清楚地显示了具有相同ID的两个视图.这可能是由于视图位于ViewPager内部,而ViewPager是一个AdapterView.因此可以预期多个实例.要解决此问题,请在匹配视图时更具体.仅仅通过ID无济于事.由于主页按钮的其他ImageView不可见,因为它的父级是GONE,您可以简单地匹配:

  8. Android gradle build:在APK LICENSE.txt打包期间重复文件

    我正在尝试使用以下gradle构建文件构建Android测试运行时我收到以下错误:Error:duplicatefilesduringpackagingofAPK…Pathinarchive:LICENSE.txtOrigin1:….gradle/caches/artifacts-24/filestore/junit/junit/4.11/jar/4e031bb61df09069aeb2bffb4

  9. android – 无法解决:编译’com.google.firebase:firebase-config:9.2.1′

    我在Gradle文件中添加Firebse远程配置SDK时出现以下错误它将显示错误错误:(25,13)无法解析:com.google.firebase:firebase-config:9.2.1在ProjectStructure对话框的FileShow中显示Gradle文件:错误Image解决方法@RiyazAhamed谢谢.解决方案是从sdk经理更新“GooglePlay服务”和“GoogleRe

  10. android-studio – 运行Android检测测试时出现“未找到测试”错误

    我是测试的初学者.我在androidstudio中为登录活动创建了一个简单的测试用例.但我得到了一个错误,我无法解决它.这是我的测试代码.帮助将非常感激.这是我的错误:这是我的gradle文件:解决方法您忘记将AndroidJUnitRunner设置为默认的测试工具运行器.https://developer.android.com/topic/libraries/testing-support-l

随机推荐

  1. bluetooth-lowenergy – Altbeacon库无法在Android 5.0上运行

    昨天我在Nexus4上获得了Android5.0的更新,并且altbeacon库停止了检测信标.似乎在监视和测距时,didEnterRegion和didRangeBeaconsInRegion都没有被调用.即使RadiusNetworks的Locate应用程序现在表现不同,一旦检测到信标的值,它们就不再得到更新,并且通常看起来好像信标超出了范围.我注意到的一点是,现在在logcat中出现以下行“B

  2. android – react-native动态更改响应者

    我正在使用react-native进行Android开发.我有一个视图,如果用户长按,我想显示一个可以拖动的动画视图.我可以使用PanResponder实现这一点,它工作正常.但我想要做的是当用户长按时,用户应该能够继续相同的触摸/按下并拖动新显示的Animated.View.如果您熟悉Google云端硬盘应用,则它具有类似的功能.当用户长按列表中的任何项目时,它会显示可拖动的项目.用户可以直接拖

  3. android – 是否有可能通过使用与最初使用的证书不同的证书对其进行签名来发布更新的应用程序

    是否可以通过使用与最初使用的证书不同的证书进行签名来发布Android应用程序的更新?我知道当我们尝试将这样的构建上传到市场时,它通常会给出错误消息.但有没有任何出路,比如将其标记为主要版本,指定市场中的某个地方?解决方法不,你不能这样做.证书是一种工具,可确保您是首次上传应用程序的人.所以总是备份密钥库!

  4. 如何检测Android中是否存在麦克风?

    ..所以我想在让用户访问语音输入功能之前检测麦克风是否存在.如何检测设备上是否有麦克风.谢谢.解决方法AndroidAPI参考:hasSystemFeature

  5. Android – 调用GONE然后VISIBLE使视图显示在错误的位置

    我有两个视图,A和B,视图A在视图B上方.当我以编程方式将视图A设置为GONE时,它将消失,并且它正下方的视图将转到视图A的位置.但是,当我再次将相同的视图设置为VISIBLE时,它会在视图B上显示.我不希望这样.我希望视图B回到原来的位置,这是我认为会发生的事情.我怎样才能做到这一点?编辑–代码}这里是XML:解决方法您可以尝试将两个视图放在RelativeLayout中并相对于彼此设置它们的位置.

  6. android – 获得一首歌的流派

    我如何阅读与歌曲相关的流派?我可以读这首歌,但是如何抓住这首歌的流派,它存放在哪里?解决方法检查此代码:

  7. android – 使用textShadow折叠工具栏

    我有一个折叠工具栏的问题,在展开状态我想在文本下面有一个模糊的阴影,我使用这段代码:用:我可以更改textColor,它可以工作,但阴影不起作用.我为阴影尝试了很多不同的值.是否可以为折叠文本投射阴影?

  8. android – 重用arm共享库

    我已经建立了armarm共享库.我有兴趣重用一个函数.我想调用该函数并获得返回值.有可能做这样的事吗?我没有任何头文件.我试过这个Android.mk,我把libtest.so放在/jni和/libs/armeabi,/lib/armeabi中.此时我的cpp文件编译,但现在是什么?我从objdump知道它的名字编辑:我试图用这个android.mk从hello-jni示例中添加prebuild库:它工作,但libtest.so相同的代码显示以下错误(启动时)libtest.so存在于libhello-j

  9. android – 为NumberPicker捕获键盘’Done’

    我有一个AlertDialog只有一些文本,一个NumberPicker,一个OK和一个取消.(我知道,这个对话框还没有做它应该保留暂停和恢复状态的事情.)我想在软键盘或其他IME上执行“完成”操作来关闭对话框,就像按下了“OK”一样,因为只有一个小部件可以编辑.看起来处理IME“Done”的最佳方法通常是在TextView上使用setonEditorActionListener.但我没有任何Te

  10. android – 想要在调用WebChromeClient#onCreateWindow时知道目标URL

    当我点击一个带有target=“_blank”属性的超链接时,会调用WebChromeClient#onCreateWindow,但我找不到新的窗口将打开的新方法?主页url是我唯一能知道的东西?我想根据目标网址更改应用行为.任何帮助表示赞赏,谢谢!

返回
顶部