window.onload = function () {
const intentarClic = () => {
const boton = document.getElementById("btnRedireccionar");
if (boton) {
boton.click();
} else {
console.warn("Esperando al botón...");
setTimeout(intentarClic, 500); // Reintenta cada 500ms
}
};
intentarClic();
};