Jump to content
UBot Underground

How To Overcome This Situation With Ubot


Recommended Posts

Hello All,

 

Here is my scenario,

 

Step 1: Login to Ahrefs.com

Step 2: goto Batch Analysis, which will let you analyze only 2 url's for a registered user and for paid user you can do it for 200 URL's.

Step 3: I have URL's on a text file. Now i want Ubot to pick the first 2 URL's from the file and insert it in batch analysis and analyze.

Step 4: After the analyze is done for the 2 URL's there is a option to export it.

Step 5: Repeat step 3 and it should proceed from URL 3, 4 and it should go on until the last line of the text file.

 

Can someone please help me on this.

 

Thanks in Advance,

Derago21

Link to post
Share on other sites

I went through it, But still not getting the actual logic to do it.

Can you please help me out.

add list to list(%newlist,$list from file("C:\\Users\\DRG\\Desktop\\2url.txt"),"Delete","Global")

I want to pull line 10 to line 20 from the txt file and add it to the list. Once that is completed, it should be removed from the list and then I want to pull from line 21 to 30, etc.,

How to achieve it? Please share your inputs.

Edited by derago21
Link to post
Share on other sites

I see you are making a difficulties.
I do not understand why you do it.
It can be tricky if you do not use the plugin.

add item to list(%Urls,$list from file("{$special folder("Application")}\\Urls.txt"),"Don\'t Delete","Global")
set(#Start,0,"Global")
set(#End,10,"Global")
set list position(%Urls,0)
loop($list total(%Urls)) {
    set(#Url,$next list item(%Urls),"Global")
    if($both($comparison($list position(%Urls),">= Greater than or equal to",#Start),$comparison($list position(%Urls),"<= Less than or equal to",#End))) {
        then {
            Go(#Url)
        }
        else {
        }
    }
}
define Go(#_url) {
    navigate(#_url,"Wait")
}
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...