Jump to content
UBot Underground

Kreatus (Ubot Ninja)

Fellow UBotter
  • Content Count

    3193
  • Joined

  • Last visited

  • Days Won

    90

Kreatus (Ubot Ninja) last won the day on April 16 2021

Kreatus (Ubot Ninja) had the most liked content!

Community Reputation

422 Excellent

About Kreatus (Ubot Ninja)

  • Rank
    Custombotsolutions.com
  • Birthday March 14

Contact Methods

  • Website URL
    http://www.custombotsolutions.com
  • Skype
    kojakfull

Profile Information

  • Gender
    Male
  • Interests
    Building Powerful Bots

System Specs

  • OS
    Windows 10
  • Total Memory
    More Than 9Gb
  • Framework
    unsure
  • License
    Developer Edition

Recent Profile Visitors

41690 profile views

Single Status Update

See all updates by Kreatus (Ubot Ninja)

  1. Hey there Ninja,

    Just got into UBot Underground and not seeing a lot of activity when I go to the leaderboard -- however I did find you and it looks like you were in the forum last month.

    Are you active with Ubot?  I need to knock out a solution and need some direction on which is the best path to get where I need to go.

    For instance... I need to navigate to eBay, enter an ID and then scrape the results into a CSV.
    Where I am uncertain how to loop through a bunch of ID's  (say 30 ID's) -- is how to add each screen full of scraped data -- into it's own row in a master CSV...

    Instinct tells me that this is a common task, yet I can't find any training tutorials that lay it out.
    Not really wanting to go down a dead end path -- so any light you can shed on this task... would be greatly appreciated!

    Robert

    1. PRO

      PRO

      You can load all ID's in a list and then loop through all elements.

      You can try and run this example:

      clear list(%urls)
      add list to list(%urls,$list from text("1,2,3,4,5",","),"Delete","Global")
      set(#counter_current,0,"Global")
      set(#counter_total,$list total(%urls),"Global")
      loop while($comparison(#counter_current,"< Less than",#counter_total)) {
          alert($list item(%urls,#counter_current))
          increment(#counter_current)
      }
      alert("Completed {#counter_current} items!")

×
×
  • Create New...