Jump to content
UBot Underground

Help Regarding Navigating Urls From The List


Recommended Posts

Hi,

I am trying to learn hope you will help me..

 

I have a list of urls which I want ubot open one by one with waiting time of 10

now my questions is 

 

I am using UI open command also

 

what I id

created UI Open command (to specify location of my url list)

created Loop - add list to list - clear list - Navigate (open list from file)

 

I don't if am doing it right please help me step by step how can I achieve this.

I want to open urls one by one..

 

Thanks in advance

Link to post
Share on other sites

clear list(%List1)
ui open file("Text File",#TextFile)
add list to list(%List1,$list from file(#TextFile),"Delete","Global")
set list position(%List1,0)
loop($list total(%List1)) {
    set(#Url,$next list item(%List1),"Global")
    navigate(#Url,"Wait")
    wait for browser event("Everything Loaded","")
    wait(1)
    comment("Do something")
    comment("Do something")
}
Link to post
Share on other sites

Thanks this works for me Great ...

 

Now again fall into other problem..

 

I completed my process.detail below

 

clean cookie

navigate some site

pick data from text file login

pick data from text file password

Go to all urls one by one (you helped above) 

change ip address

wait 60sec..

 

But my problem is how I restart the whole process and it should pick data for user name and password from next line of next..

how I set number of runs..

 

Thanks :) for you help..

Link to post
Share on other sites

Thanks this works for me Great ...

 

Now again fall into other problem..

 

I completed my process.detail below

 

clean cookie

navigate some site

pick data from text file login

pick data from text file password

Go to all urls one by one (you helped above) 

change ip address

wait 60sec..

 

But my problem is how I restart the whole process and it should pick data for user name and password from next line of next..

how I set number of runs..

 

Thanks :) for you help..

use command "$list item"

set(#Url,$list item(%List1,#LoopNumber),"Global")

#LoopNumber = 1,2,3 or other

 

Link to post
Share on other sites

ATTACHED IF WHOLE CODE 

 

I want bot complete whole process of login and restart from cleaning cookies and picking next email and password from the list..

 

This process cont..till all lines of email and pass are completed..

 

please help ..I run the code but it always pick first email and password from the list..

CODE.txt

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