Jump to content
UBot Underground

Leaderboard

Popular Content

Showing content with the highest reputation on 12/21/19 in all areas

  1. There's a unique identifier used for each review, that is available in an id attribute. If we get those identifiers into a list, and then go through that list with a with each command, we'll be able to target each of those helpful vote sections individually with a complete class name -since the unique identifier is used in the class name for the element you want to scrape. Not the prettiest way of explaining it so here's an example. In the example below, 10 results are returned including the empty helpful vote, which is returned as the text "helpful vote" in the list. set(#_httpRequestSin
    1 point
  2. You can do it like this: clear list(%list) add list to list(%list, $list from text("orange banana juice manggo coffee", $new line), "Delete", "Global") set(#position, 0, "Global") loop($list total(%list)) { if($comparison($list item(%list, #position), "=", "juice")) { then { alert("\"juice\" is at list position {#position}") } else { } } increment(#position) } John
    1 point
×
×
  • Create New...