gol*_*cks 6 android appium react-native
我试图(太长时间了...)使appium与本机反应,但似乎找不到任何元素。
我正在使用模拟器,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()
Run Code Online (Sandbox Code Playgroud)
而我得到...
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.
Run Code Online (Sandbox Code Playgroud)
我也尝试设置:
<Text accessible accessibilityLabel={ 'foo' }>foo</Text>
相同的反应...
有任何想法吗?
我最终使用了这个解决方案:
<Text accessibilityLabel={ 'FOO' } testID={ 'FOO' }>some stuff here</Text>
Run Code Online (Sandbox Code Playgroud)
然后在测试中:
driver
.elementByAccessibilityId('FOO')
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
3927 次 |
| 最近记录: |