当我点击 Detox 时,按钮没有被点击。但是,如果我只需单击它就可以点击它

When I tap with Detox, the button is not tapped. However it can be tapped if I just click at it

问题是当我点击 Detox 时,按钮没有被点击。不过只要点一下就可以了

排毒版本:16.8.2, React Native 版本:0.57.1​​

已解决。

发生这种情况是因为我之前使用 device.openURL({url: 'https://...' }) 从深层 link 打开应用程序。

相反,它在打开应用程序的新实例后工作,参数中有一个深 link:device.launchApp({newInstance: true, url: 'https://...' });

之后就可以进行交互了。 它看起来像方法 device.openURL()

的错误