javascript – testcafe / node.js元素查询中抛出的错误
作者:互联网
我正在编写的testcafe脚本中有以下代码片段.
32: let NNT = Selector('#notNow').withText('No thanks, not at this time.')
33: button = Selector('.myclass')
34: let email = Vladimir.Putin@gmail.com
35: await t.click(button)
36: let emailS= Selector('#login-email')
37: await t.expect(emailS.visible).ok()
38: await t.debug()
39: await t.typeText(emailS,email)
但在第38行,我收到以下错误
页面“https://mywebpage.com”上的错误:
未捕获的TypeError:无法读取未定义的属性“top”
我意识到这个错误意味着我的页面不再存在,但肯定是这里的电子邮箱是html
<li>
<label for="login-email">Email Address</label>
<div class="input-box">
<input type="text" class="input-text required-entry validate-email" id="login-email" name="login[username]" value="">
</div>
</li>
所以在这种情况下,这个错误意味着什么.提前致谢.
更新:在删除行以查看错误发生的位置时,我发现在加载包含.myclass的页面后立即抛出错误.
解决方法:
这个属性’top’在哪里被引用?
在这种情况下,它意味着无论您期望属性“top”存在于哪个对象中,该对象都不存在,因此它是未定义的
标签:testcafe,javascript,node-js 来源: https://codeday.me/bug/20190828/1747334.html