Я пытаюсь прочитать (используя транспортир и BDD) значения по умолчанию некоторых выпадающих списков. Для этого я пробовал несколько строк кода, но ни одна из них не работает.
Вот код, который я использую, console.log по какой-то причине не выполняется. Почему?
checkDropdownAssignment: function(dropdown,defaultValue) //Function to check the value assigned to a dropdown
{
let texto=[];
$$('* option:checked').each(function(element, index) { // Execute this operation for each element of the website
element.getText().then(function (text) { //Get text of the element in order to compare it with the endpoint afterwards.
texto.push(index.toString()); // Add one more component to the vector
texto[index]=text; // Save the text in a variable visible outside of this function.
console.log(texto[index]);
});
});
},
Заранее спасибо.