gpt4 book ai didi

android - React native + Appium,如何找到一个元素

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:14:30 29 4
gpt4 key购买 nike

我正在尝试(太长时间......)让 appium 与 React Native 一起工作,但似乎找不到任何元素。

我正在使用模拟器、Nexus 6、android 6.0、ubuntu、appium 1.6.0、RN 0.39.2。

我正在尝试让最基本的示例起作用:

// foo.js
render () {
return (
<Text>foo</Text>
)
}

// spec.js
// ... some setup ...
driver
.elementByAccessibilityId('foo')
.click()

我正在……

      1) should be able to find 'Buttons' and click it


0 passing (13s)
1 failing

1) Android find and click should be able to find 'Buttons' and click it:
Error: [elementByAccessibilityId("foo")] Error response status: 7, , NoSuchElement - An element could not be located on the page using the given search parameters. Selenium error: An element could not be located on the page using the given search parameters.

我也试过设置: <Text accessible accessibilityLabel={ 'foo' }>foo</Text>

同样的 react ...

有什么想法吗?

最佳答案

我最终使用了这个解决方案:

<Text accessibilityLabel={ 'FOO' } testID={ 'FOO' }>some stuff here</Text>

然后在测试中:

driver
.elementByAccessibilityId('FOO')

感谢@jonesdar 指出了这一点 here

关于android - React native + Appium,如何找到一个元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41469765/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com