Jump to content
UBot Underground

Recommended Posts

I don't understand why i am getting the error:

 

YOU HAVE EXCEEDED THE RANGE OF THE LIST

clear list(%urls)
add list to list($scrape attribute(<outerhtml=w"<a href=\"http://site.com/tr.php?id=*\" target=\"_blank\">

<img src=\"*\" width=\"110\" height=\"110\" style=\"border:1px solid black\"></a>">,"fullhref"),%urls,"Delete","Global")
navigate($next list item(%urls),"Wait")

%urls is filled with 

0 http://site.com/tr.php?id=123
1 http://site.com/tr.php?id=124
2 http://site.com/tr.php?id=125
3 http://site.com/tr.php?id=126

If i launch the script i get the error right after it has scrapped. It doesn't navigate to the first url ?

 

Is this a bug ? Is it doing this on your end ?

Just upgraded to 5.5.12

 

Thanks

 

http://i59.tinypic.com/1045dvs.jpg

 

 

 

EDITED

Odd ? I see in PINK , my scrape attribute code when i search for a command, in the search tool box what the heck ???

Along with: 

$scrape attribute

$scrape list

etc...

Link to post
Share on other sites

Instead of using Parameter $next List Item 

 

make a variable called #list pos

Then Set value of this Varuable to 0

Then Navigate to $List Item and Position of the List is located inside #list pos

and increment the variable  #list pos after every Loop and you will be fine

 

Like This

clear list(%urls)
add list to list($scrape attribute(<outerhtml=w"<a href=\"http://site.com/tr.php?id=*\" target=\"_blank\">

<img src=\"*\" width=\"110\" height=\"110\" style=\"border:1px solid black\"></a>">,"fullhref"),%urls,"Delete","Global")
set(#list pos,0,"Global")
loop(2) {
    navigate($list item(%urls,#list pos),"Wait")
    wait(3)
    increment(#list pos)
}

  • Like 1
Link to post
Share on other sites

Thanks mate

 

Also guys make sure to use 

clear list(%urls)
add list to list(%urls,$scrape attribute(<outerhtml=w"<a href=\"http://site.com/tr.php?id=*\" target=\"_blank\">

<img src=\"*\" width=\"110\" height=\"110\" style=\"border:1px solid black\"></a>">,"fullhref"),"Delete","Global")
navigate($next list item(%urls),"Wait")

Link to post
Share on other sites
  • 3 years later...

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