1

在使用 Detox 进行测试时,我在按钮上执行 tap() 时遇到问题。

<Button style={this._loginButtonDisabled() ? {} : styles.loginButtonActive}
        disabled={this._loginButtonDisabled()}
        onPress={this.logInClick}
        testID='logInButton'>
    <Text style={styles.loginButtonText}>Log In</Text>
</Button>   

我们的测试如下所示:

const emailInput = element(by.id('emailInput'));
await emailInput.replaceText('idontexist@myeatclub.com');

const passwordInput = element(by.id('passwordInput'));
await passwordInput.replaceText('password');

await element(by.id('logInButton')).tap();

该按钮始终可见,但只有在表单字段中输入文本后才会启用(“可点击”)。因此,上面的代码在启用之前点击了按钮,导致没有实际操作。我想做的是等到按钮启用,然后执行点击。

处理这种情况的建议方法是什么?我在文档中找不到任何好的例子。

4

1 回答 1

0

我认为这是因为您使用的是replaceText

而是尝试使用typeText

像这样:

const emailInput = element(by.id('emailInput'));
await emailInput.replaceText('idontexist@myeatclub.com');

const passwordInput = element(by.id('passwordInput'));
// \n is used to press the return key on keyboard
await passwordInput.typeText('password\n');

await element(by.id('logInButton')).tap();
于 2018-01-23T15:25:59.840 回答