diff --git a/src/bypasses/mobi2c.js b/src/bypasses/mobi2c.js index b0cbea85..73009de6 100644 --- a/src/bypasses/mobi2c.js +++ b/src/bypasses/mobi2c.js @@ -10,12 +10,13 @@ export default class Mobi2c extends BypassDefinition { // /mobi2c.com|newforex.online|healthy4pepole.com|world-trips.net|forex-gold.net|healdad.com|world2our.com|gamalk-sehetk.com|mobitaak.com|forexit.online|shopforex.online|bluetechno.net/, function() {ClickIfExists('.submitBtn', 3);ClickIfExists('#go_d', 3, 'setInterval');}); //Click the element .submitBtn after a delay of 3 seconds this.helpers.setTimeout(() => { - document.getElementsByClassName('.submitBtn')[0].click(); + document.querySelector('.submitBtn').click(); }, 3000); //Click the element #go_d every 3 seconds until it is clicked this.helpers.setInterval(() => { - document.getElementById('#go_d')[0].click(); + document.querySelector('#go_d').click(); }, 3000); + window.setTimeout = f => setTimeout(f, 100) } }