Jump to content
UBot Underground

Scrape atrribute


Recommended Posts

give this regular expressions a shot, it may or may not work depeding the the rest of the page html, if you can post more of the page I could give you a better example.

(?!<a\shref="\/)[A-Za-z]+(?=\/photography\/")
Link to post
Share on other sites

Not the prettiest thing in the world but it should work:

clear list(%usernames)
add list to list(%usernames, $scrape attribute(<class="creditItem">, "innerhtml"), "Delete", "Global")
loop($list total(%usernames)) {
    set(#username, $find regular expression($next list item(%usernames), "(?<=href=\\\")\\/.*?(?=\\/)"), "Global")
    comment("do stuff")
}

  • Like 1
Link to post
Share on other sites

 

Not the prettiest thing in the world but it should work:

clear list(%usernames)
add list to list(%usernames, $scrape attribute(<class="creditItem">, "innerhtml"), "Delete", "Global")
loop($list total(%usernames)) {
    set(#username, $find regular expression($next list item(%usernames), "(?<=href=\\\")\\/.*?(?=\\/)"), "Global")
    comment("do stuff")
}

 

code work great how i scroll down page get more username

Link to post
Share on other sites

code work great how i scroll down page get more username

 

this will work for that.

run javascript("window.scrollTo(0,document.body.scrollHeight); ")
  • Like 2
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...