在使用 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();
该按钮始终可见,但只有在表单字段中输入文本后才会启用(“可点击”)。因此,上面的代码在启用之前点击了按钮,导致没有实际操作。我想做的是等到按钮启用,然后执行点击。
处理这种情况的建议方法是什么?我在文档中找不到任何好的例子。