0

在 React Native 项目中使用 detox。这是组件:

<TouchableWithoutFeedback
  testID={'rss_list_' + this.props.index}
  onPress={this.selectItem}
>
  <View testID={'rss_list_text_' + this.props.index}>
    <Text style={styles.itemText}>
      {this.props.item.title ? this.props.item.title.trim() : "no title"}
    </Text>
  </View>
</TouchableWithoutFeedback>

实际测试:

  it('should have an Rss List', async () => {
    await expect(element(by.id('RssList'))).toExist();
  });

  it('should have a Header', async () => {
    await expect(element(by.id('main_header'))).toExist();
  });

  it('should have a populated rss list', async () => {
    await expect(element(by.id('rss_list_populated'))).toExist();
  });

  it('should have an rss item', async () => {
    await expect(element(by.id('rss_list_2'))).toBeVisible();
  });

  it('should tap on the rss item', async () => {
    await element(by.id('rss_list_2')).tap();
  });

  it('should see the item view', async () => {
    await waitFor(element(by.id('item_view'))).toBeVisible().withTimeout(10000);
  });

问题:

应该有一个 rss 项目成功并找到该项目。但是,尝试点击 TouchableWithoutFeedback、View 或 Text 元素会成功,但下面的函数不会触发。测试没有失败 Detox 表示 Tap 发生了,但是从 Tap 产生的 item_view 从未出现。标题中的所有方法我都试过了:tap、multiTap、longPress。我也试过在测试过程中手动敲击,它也不起作用。排毒中只有一些元素类型可以点击吗?

更新:我今天在 Appium 中尝试过,它也无法单击该元素。看起来问题出在TouchableWithoutFeedback

4

1 回答 1

0

TouchableWithoutFeedback不支持testID道具,也不会View直接在下面。

于 2018-10-24T17:59:03.237 回答