Imageview Src path in Android in Appium



在我们的Android应用程序中,我们在缩略图中使用占位图像,直到服务器返回有效的图像。Android 开发人员在找到图像时会更改 ImageView 的 src。我无法找到 ImageView 的 src,因为当我做一个 get_attribute('src') 时,什么也没出现。有没有办法获取图像视图的src?

首先你需要设置标签,然后你肯定可以获取ImageView的资源。

   myImageView.setTag(R.drawable.currentImage);    //set this along when you set your image source
    int drawableId = (Integer)myImageView.getTag(); //get the resource

我通过设置ImageView描述来解决此问题.setContentDescription({image_resource})

然后在 appium 上获取它

.getAttribute("name")

相关内容

  • 没有找到相关文章

最新更新