gpt4 book ai didi

react-native - 排毒 - 在数字键盘上输入

转载 作者:行者123 更新时间:2023-12-04 05:09:30 25 4
gpt4 key购买 nike

我想知道如何使用 native 键盘输入数字,然后使用“\n”在 Detox 的普通字符串上像 typeText 一样输入它

//await typeText('${screen_id}_screen_question_${question_id}_answer_input_', '\n');

我怎样才能用数字实现这个?

每当我输入 typeText ('n') 时,它都会给我 GREYKeyboard: No known SHIFT key was found in the hierarchy.

在我的假设中,因为小键盘键没有 Enter 键。但仍然不确定它为什么要寻找 Shift 键。

谢谢

最佳答案

使用 react-native 的 Keyboard 模块来隐藏键盘。

这是一个类似的问题:detox-how-to-test-multiline-textinput

例子:

import {Keyboard} from 'react-native'

import React, { Component } from 'react'
import {
AppRegistry,
StyleSheet,
Alert,
TouchableWithoutFeedback,
TouchableOpacity,
View,
Text,
TextInput
} from 'react-native'

class example extends Component {
constructor(props) {
super(props)
}

render() {
return (
<TouchableWithoutFeedback
onPress={Keyboard.dismiss}
style={styles.container}
>
<View style={styles.form}>
<View style={styles.input}>
<TextInput
testID='input'
style={styles.inputText}
keyboardType="numeric"
/>
</View>
<TouchableOpacity
testID='next'
style={styles.button}
onPress={() => Alert.alert("Button pressed")}
>
<Text>Next</Text>
</TouchableOpacity>
</View>
</TouchableWithoutFeedback>
)
}
}

const styles = StyleSheet.create({
container: {
flex: 1
},
form: {
flex: 1,
justifyContent: 'center',
alignItems: 'center'
},
input: {
height: 20,
width: 200,
borderColor: 'gray',
borderWidth: 1
},
inputText: {
flex: 1
},
button: {
margin: 20,
padding: 5,
borderColor: 'gray',
borderWidth: 1
}
})

AppRegistry.registerComponent('example', () => example)

测试:

it('Hide num keyboard', async () => {
const inputElement = element(by.id('input'));
await expect(inputElement).toBeVisible();
await inputElement.typeText('1234567890');
// click somewhere outside the input
await inputElement.tapAtPoint({x: 0, y: -1});
const buttonElement = element(by.id('next'));
await expect(buttonElement).toBeVisible();
await buttonElement.tap();
});

结果:

example

关于react-native - 排毒 - 在数字键盘上输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47766371/

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