我编写了一个 javascript 方法,可以在单击图像时更改建议框的值。
function startDestinationF(a) {
var startDestination = document.getElementById('startDestination');
startDestination.selectedIndex = (a);}
现在我必须编写一个茉莉花测试用例来检查这种方法是否真的有效,但我真的不明白。
我试过了:
describe("Change onclick the value of the drop down menu", function() {
var startDestination;
beforeEach(function() {
startDestination = document.getElementById('startDestination');
});
it("should change the value", function() {
expect(startDestinationF(3)).toBe(startDestination.selectedIndex==3);
});});
但它说:“无法读取 null 的属性‘selectedIndex’”。我是那个领域的新手,我真的需要一些帮助......
谢谢