Jump to content
UBot Underground

[SOLVED] Submit button "DISABLED" how can I ENABLE it with Ubot?


Recommended Posts

I submit button is grayed out and disabled in source code, I can mess with the source code and change the DIABLE to ENABLE and the button starts working, but how can I possibly do this with Ubot?

Edited by myubo
Link to post
Share on other sites

Hey at https://flipboard.com/signup

After you fill in the: email, name, password and click continue, ReDaptcha button is going to appear and the "Continue" button get grayed out, html code DISABLED

With Ubot i need to change this:

<button type="submit" class="button--primary button--block button--base css-bsz50z ea02pfk0" aria-disabled="false" 
        data-vars-button-name="signup__form-submit" data-ga-target="button" disabled="">Continue</button>

Change it to this (need to remove the "disabled" tag)

<button type="submit" class="button--primary button--block button--base css-bsz50z ea02pfk0" aria-disabled="false" 
        data-vars-button-name="signup__form-submit" data-ga-target="button"            >Continue</button>

 

Edited by myubo
Link to post
Share on other sites

AHHHH I finally figured it out!!!  Wasn't even hard when I now think about it

 

set(#formDisabled,$scrape attribute(<class="css-1p44k52 e3o7t1d4">,"innerhtml"),"Global")
set(#formEnabled,$replace(#formDisabled,"disabled","enabled"),"Global")
change attribute(<class="css-1p44k52 e3o7t1d4">,"innerhtml",#formEnabled)

 

Link to post
Share on other sites
  • myubo changed the title to [SOLVED] Submit button "DISABLED" how can I ENABLE it with Ubot?

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...