画像をクリックすると、suggestbox の値を変更する 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'を読み取れません」と書かれています。私はその分野の初心者で、本当に助けが必要かもしれません...
ありがとう