Jump to content
UBot Underground

Leaderboard

Popular Content

Showing content with the highest reputation on 11/22/19 in all areas

  1. what I ended up doing is using javascript to click the button inside the only iframe on the page var iframe = document.getElementsByTagName("iframe")[0]; var inputs = iframe.contentWindow.document.getElementsByTagName("input"); for(var i=inputs.length-1; i>=0; i--) { if (inputs[i].name == "commit") { input_file = inputs[i]; break; } } input_file.click(); being able to run javascript like that is a really powerful feature of UBot I think is not emphasized nearly enough
    1 point
×
×
  • Create New...