Jump to content
UBot Underground

Posting To Reddit - Can't Click


Recommended Posts

Hi - I have a simple problem: can't click buttons in Reddit when trying to login and post.

 

Here's the login bit - the click in the last line doesn't work.

 

clear cookies
    navigate("https://www.reddit.com/login","Wait")
    wait for browser event("Page Loaded","")
    wait(3)
    type text($element offset(<class="c-form-control">,4),$list item(%LoginNames,#LoopCounter),"Standard")
    wait for browser event("Everything Loaded","")
    wait(3)
    type text($element offset(<class="c-form-control">,5),$list item(%LoginPW,#LoopCounter),"Standard")
    wait(3)
    click(<class="c-btn c-btn-primary c-pull-right">,"Left Click","No")

 

User agent is Chrome but I've tried others. Using Chrome 49 browser, but Chrome 21 browser doesn't work either.

 

What can be done? I have Ubot standard edition.

 

Thanks

 

Link to post
Share on other sites

This worked for me:

 

clear cookies
set user agent("iPhone")
navigate("https://www.reddit.com/login","Wait")
wait for element(<username field>,"","Appear")
type text(<username field>,$list item(%LoginNames,#LoopCounter),"Standard")
wait for element(<password field>,"","Appear")
type text(<password field>,$list item(%LoginPW,#LoopCounter),"Standard")
wait for element(<class="SquareButton__content">,"","Appear")
click(<class="SquareButton__content">,"Left Click","No")

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