// …
click.promise.then(()=>{
continuation(stuff);
})
// …
function continuation(stuff) {
}
async function () {
// …
let current = await ({"…"});
let checkOpen = current.querySelector('.multiselect__content-wrapper');
let allRow = checkOpen.querySelectorAll('ul .multiselect__element')
if(checkOpen.style.display != ''){
return;
}
let targetRow = new toElement('1-й Сет', allRow);
if (!targetRow.result) {
return;
}
let coords = new responseCoords(targetRow.result);
let cursor_move = new cursorMove(coords.result);
await cursor_move.func();
let click = new cursorClick();
click.func();
await click.promise;
// здесь можно запросить, что хотели
}
Array.prototype.forEach.call
(document.getElementsByTagName("link"),
function (element) { console.log(element.href); });