Код: Выделить всё
Код: Выделить всё
window.onload = function () {
var intervalo = setInterval(function () {
//var toSend = [];
console.log("Inicia");
var btn_modal=document.querySelectorAll(".close-btn");
if(btn_modal.length>0){
btn_modal[1].click();
var div_cuentas=document.querySelector('bbva-web-navigation-menu-item[icon="bbva:account"]');
if(div_cuentas){
var btn_mis_cuentas=div_cuentas.querySelector('bbva-web-navigation-menu-item-action[role="button"]');
if(btn_mis_cuentas){
btn_mis_cuentas.click();
}else{
console.error("No se encontro role=button");
}
}else{
console.error("No se encontro icon=bbva:account");
}
}else{
console.error("No se encontraron .close-btn");
}
}, 10000); //Termina el temporizador y se coloca el tiempo para que se repita
};
Подробнее здесь: https://stackoverflow.com/questions/786 ... pulate-dom
Мобильная версия