Jump to content
UBot Underground

Search the Community

Showing results for tags 'loop while'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Announcements and News
    • Join the UBot Community
  • General
    • General Discussion
    • Mac and UBot Studio
    • Journeys
    • Buy, Sell, Free
    • Scripting

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 6 results

  1. I have many embedded loops to check for multiple possible errors. In each of those loops there are If/Then to detect which possible error it encountered and how to recover from that. To which the last part of the "then" needs to be stop executing this loop and go back to the last step. I see no way to do this in ubot. Other scripting apps I've used have commands like "Exit Loop" or "End Loop" to stop processing the rest of the loop. If there are 10 possible errors and I find the error on the first try, why even try the other 9 and waste all that time? The below is basically how it goes with mo
  2. Hi, This can be very simple for someone.. loop while($not($find regular expression(#website, #website))) { wait(5) click(<innertext="Next">, "Left Click", "No") actually loop and click next untill it find particular regular expression..But the loop never stops even it find that regex on page..I want it to stop or break loop and move to next command.. plz help
  3. In my script, I have a Loop While command that executes so long as an element exists on the page. After completing a Google search, the script scrapes an element from the page and adds it to a table. The problem I'm running into is that the Loop does not stop immediately when the 'While' condition fails. For example: set(#smoothSailing,$true,"Global") loop while(#smoothSailing) { type text(<username field>,"Smooth Sailing is True","Standard") set(#smoothSailing,$false,"Local") type text(<about me textarea>,"This should not be entered since smoothSailing was set to f
  4. Hi i need some help, i am trying to make myself a twitter bot. i want to loop until i am not following anyone. i need to know how to loop while waiting for following total to =0 but i have no idea how to do this some one please explain thanks
  5. Hey guys, I'm currently having a problem with the Loop While function. I've searched the forum and really haven't found anything that could help me with it and this is really the first time I've used Loop While as I've never really needed to until now. What I'm trying to do is upload a file, then it enters the loop while until that file is finished. When the file is finished then it will change increment the variable from 0 to 1, thus breaking out of the Loop While and continuing with the script. Here is the code I have below: set(#SearchPage, 0, "Global") loop while($comparison(#Searc
  6. Hi Guys, I'm scraping pages and after each page i need to navigate to the next page until there's no more pages. To navigate to next page I click "Next", which works well until I get to the last page where it still says "Next" but it's not clickable. How do I get the bot to stop at the last next when it's no longer a clickable link? Thanks, Wize
×
×
  • Create New...