|
1 2 3 4 5 6 7 8 |
const botones = Array.from(document.querySelectorAll("button")); botones.forEach((btn) => { if (btn.innerText.trim().includes("Conectar")) { btn.click(); console.log("Click en:", btn); } }); |
|
1 2 3 4 5 6 7 8 |
const botones = Array.from(document.querySelectorAll("button")); botones.forEach((btn) => { if (btn.innerText.trim().includes("Conectar")) { btn.click(); console.log("Click en:", btn); } }); |