gpt4 book ai didi

javascript - 在 testcafe 中断言空文本框

转载 作者:行者123 更新时间:2023-12-02 08:45:29 24 4
gpt4 key购买 nike

我正在验证文本框是否为空。我不确定我在这里做错了什么。

Page Object method
async getTextVal(){
await this.t.selectText(this.editor) //selecting the text box
return this.editor.innerText; //fetching the value in the textbox
}
TestCase
await t.expect(element.getTextVal()).eql(''); //assert statement

如果存在值,则 getTextVal 可以正常工作。但检查空值失败

最佳答案

尝试

Page Object method
async getTextVal(){
await this.t.selectText(this.editor) //selecting the text box
return await this.editor.innerText; //fetching the value in the textbox
}
TestCase
await t.expect(await element.getTextVal()).eql(''); //assert statement

关于javascript - 在 testcafe 中断言空文本框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61111899/

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