Jump to content
UBot Underground

north_star

Members
  • Content Count

    106
  • Joined

  • Last visited

  • Days Won

    3

Posts posted by north_star

  1. Here is how to do it :

    navigate("https://na.edit.yahoo.com/registration?", "Wait")
    set(#month, $scrape attribute(<name="mm">, "outerhtml"), "Global")
    add list to list(%month, $find regular expression(#month, "(?<=\">).*?(?=<\\/)"), "Delete", "Global")
    set(#month, %month, "Global")
    set(#month, $replace(#month, $new line, ","), "Global")
    set(#Choose Your Month, $plugin function("File Management.dll", "$dropdown dialog", "Choose Your Month", "Choose Your Month:", #month), "Global")
    wait(1)
    change dropdown(<name="mm">, #Choose Your Month)
    
    • Like 1
  2. try this

    clear list(%list to check)
    set(#word to check, "Contact Us", "Global")
    add list to list(%list to check, $list from text("Contact
    Contact Us
    Contact Us Now", $new line), "Delete", "Global")
    loop($list total(%list to check)) {
        if($comparison($next list item(%list to check), "=", #word to check)) {
            then {
                alert("your text is  \"{#word to check}\"")
            }
            else {
            }
        }
    }
    
  3. Try this. perhaps it could help

    set(#abstract, $scrape attribute(<class="abstract">, "innertext"), "Global")
    add list to list(%rought list, $list from text(#abstract, $new line), "Delete", "Global")
    loop(5) {
        add item to list(%clear result, $next list item(%rought list), "Delete", "Global")
        comment("=========== the scrapeed line=====")
    }
    
    • Like 1
×
×
  • Create New...