Jump to content
UBot Underground

Assistance With Getting Results Via Search (Sending Keys Won't Work)


Recommended Posts

Hi,

I'd like to get ranking for an apps via appAnnie (https://www.appannie.com) website. 

 

The procedure is as follows:

 

1. Type app name

2. Click on the required app from the drop down menu 

 

The problem: when using ubot to send type text, it doesn't have the same effect as if you were using the keyboard, and as a result - the dropdown does not reflect what the bot inputs. 

Example: using ubot to type "facebook" does not result in "facebook" being showed on the drop down list of apps. 

 

Any assistance would be greatly appreciated

Edited by shloogy
Link to post
Share on other sites

Try this:

TypeTextWithDelay("facebook")
define TypeTextWithDelay(#_input) {
    set(#_position,0,"Local")
    loop($text length(#_input)) {
        type text($element offset(<id="search-box">,0),$substring(#_input,#_position,1),"Standard")
        wait(0.1)
        increment(#_position)
    }
}
Link to post
Share on other sites

Thanks for your reply, it did not work:

https://i.gyazo.com/b20898d00772944d1ee61d26c67892c7.png

 

I tried changing the intervals etc. The typing does not have any effect on the results. It's like the input is not being sent to the server. 

Edited by shloogy
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...