有没有一种方法可以使用UIAutomator与Android-10-样式的通知进行交互

时间:2020-09-22 04:35:37

标签: android-espresso android-uiautomator

我有一条通知显示在移动设备的顶部,如下所示:

enter image description here

该通知是使用类似于Android tutorials的东西创建的。

我希望能够使用Espresso和UIAutomator来检查它是否存在或与之交互。

我尝试过:

["{   \"BTC\": 1.9102,   \"USD\": -19900.5 }"] 
    fun clickText(text:String){
        val uiDevice = UiDevice.getInstance(InstrumentationRegistry.getInstrumentation());
        val clickable = uiDevice.findObject(UiSelector().text(text));
        clickable.click();
    }

但是它不起作用。当我尝试在Appium Desktop中分析它时,它似乎也不存在

我得到了错误:

 UiAutomatorHelper.clickText("DECLINE");

0 个答案:

没有答案