Skip to content

Commit

Permalink
fix: mobi2c
Browse files Browse the repository at this point in the history
  • Loading branch information
driedpampas committed Oct 14, 2023
1 parent 4935fb7 commit 72ca7c4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/bypasses/mobi2c.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}

Expand Down

0 comments on commit 72ca7c4

Please sign in to comment.