Jump to content
UBot Underground

Recommended Posts

Guys, i can't click anymore on a submit button ? It stopped working ?

Also, there's a note saying: "Don't hit your enter button, click on SUBMIT or it will not work"

<form method="post">
 					<input type="hidden" name="id" value="1">
 					12 + 10 =  <input size="2" type="text" name="answer">
 					<br><br><input type="submit" name="submit" value="Submit">
 					</form>

My math captcha solving is working right by the way. I just can't go further anymore. It just stopped working after months of working fine ?

(tried with UB4 and UB5)

 

Code i tried that are not working:

 click(<name="submit">, "Left Click", "No") dragging
    click(<name="submit">, "Left Click", "No") using selector
    click(<image="SUBMIT-IMAGE">, "Left Click", "No") using camera

Any ideas ? Thanks

Link to post
Share on other sites

Do you have the page?

 

I can't as it's within a membership area

 

 

 

use JS
 
function submitform()
{
  document.form[0].submit();
}

 

Is this ok ? As it's not working

run javascript("function submitform()
\{
  document.form[0].submit();
\}")

I also tried this and it didn't work either:

run javascript("document.getElementById(\'submit\').click()")

What's even more weird is that on my last debugging test, the UB code worked fine ????

click(<name="submit">, "Left Click", "No")

I think it's now having problems when running as compiled ? Well i think ?

Unless i'm missing something.

 

Thanks guys by the way and if anyone as an idea, please SHOOT (or if you are having the same issue ?)!

Link to post
Share on other sites

Another thought -- if the code blumi shared doesn't work... 

 

Try changing the document.form[0] to document.form[1] or [2], as there might be multiple forms on that page and you might be submitting the wrong one?

  • Like 1
Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...