<div id="asd-container"><div class="asd" style="top: 0px; opacity: 1;">Привет</div></div>
<div id="asd-container"><div class="asd" style="top: 0px; opacity: 1;">Пока</div></div>
document.querySelector('[class="btn btn--close"]').click()
let is_privet, is_poka //для запоминания результатов поиска
let arr = document.querySelectorAll("div#asd-container .asd") //места поиска
if (arr) arr.forEach(div => { //ищем указанные тексты
if (div.innerText == "Привет") is_privet = true;
if (div.innerText == "Пока") is_poka = true;
});
if (is_privet && is_poka) { //выполняем целевой код
document.querySelector('[class="btn btn--close"]').click();
}
const asdContainer = document.getElementById('asd-container');
if (asdContainer) {
const text = asdContainer.textContent;
console.log(text);
}