我刚刚开始为测试应用程序测试测试用例,
几件事情。
1)模拟侦听器的过程是什么?
2)当存在诸如parentElement.classList,ParentELement.innerText之类的语句时,在测试用例中,我必须模拟一个{parentElemnent:{inneertext:""}},{parentElemnent:{ClassList:""}}..
之类的对象,但看起来我的做法是错误的。
3)为document.querySelector(“ ..”)编写测试用例的过程是什么?
我在编写下面的测试用例时遇到错误,说没有属性“ innerText”
clickHandler(event){
document.querySelector(event.currentTarget.innertext)
}