Auto answer Duolingo script!
< Feedback on Duolingo-Cheat-Tool
If you want to fix the auto answer feature. Replace pressEnter() function with my code below:function pressEnter() { var clickEvent = new MouseEvent("click", { "view": window, "bubbles": true, "cancelable": false }); document.querySelector('button[data-test="player-next"]').dispatchEvent(clickEvent);}
function pressEnter() { var clickEvent = new MouseEvent("click", { "view": window, "bubbles": true, "cancelable": false }); document.querySelector('button[data-test="player-next"]').dispatchEvent(clickEvent);}
Đăng nhập để bình luận
If you want to fix the auto answer feature. Replace pressEnter() function with my code below:
function pressEnter() {
var clickEvent = new MouseEvent("click", {
"view": window,
"bubbles": true,
"cancelable": false
});
document.querySelector('button[data-test="player-next"]').dispatchEvent(clickEvent);
}