Jump to content
UBot Underground

Recommended Posts

I scraped some ids from a site and I am in the list of ids scraped. I have it as add list to list scrape attribute href and etc. You know the deal. The problem is when I navigate to next list item it always starts at mine and I want it to start at the next list id instead of mine.

I did try doing list position at  and even at 2 but it still is navigating to my id first.

 

I know it's a simple fix I just can't figure it out yet.

Link to post
Share on other sites

Not sure what you mean but this is how you loop through a list

with each(%list_with_ids,#each_id) {
    navigate(#each_id,"Wait")
}

with each is not realiable enough so I still stick with the older way

    set(#i,0,"Global")
    loop($list total(%list_with_ids)) {
        set(#current_id,$list item(%list_with_ids,#i),"Global")
        navigate(#current_id,"Wait")
        increment(#i)
    }

Hope that helps.

Link to post
Share on other sites

This is a pic of what I have. It navigates just fine through every id but it always goes to mine first and I am not wanting it to do that.

I have set list position to 1 instead of 0 and even tried list position 2 and it still goes to mine first.

post-9248-0-30733000-1457569826_thumb.jpg

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