Jump to content
UBot Underground

webpro

Fellow UBotter
  • Content Count

    775
  • Joined

  • Last visited

  • Days Won

    7

Everything posted by webpro

  1. Humm nice! You mean before it does something that might crash the hole thing? Everytime? Usually i just put these commands at the beginning of a bot. I guess i'll add some more! Thanks EDITED: Trying headless browsing to see how it goes... EDITED 2: I'm surprised as it crashed again. Well i ran the headless node as "NO" (after letting the bot run for a while with headless "ON") and i saw the browser freezed with huge fonts and no action at all. Any ideas on this? Is there a bug tracker already created for this Thanks Oh yeah, one thing i've noticed is that it does this more often
  2. Well well well Windows 10 here also and i'm pretty sure all the glitches started when i made the switch!!!!!!!
  3. I'm trying to figure out a way to make sure this doesn't happen. You know when you come back to a page and/or click on something and the page in the browser becomes blurry and fonts get over sized? Then everything freezes and there is nothing you can do about it besides shutting down the bot or to reboot Ubot. Happens more often in gmail. When you want to click on something like the trash basket
  4. Freezes a lot here to but i just can't pin point the problem. Can't click on things, need to restart UB. Defines crashing the bot etc...If i could only find what the bug is that's causing all of this!
  5. Crapppp I talked too fast! It's crashing all of the time. Now i can't pin point the problem. So i can't create a tracker ticket so that the crew is able to troubleshoot it. Right now i suspect some DEFINE commands? If i run the nodes one by one, it works perfectly.... I'm on Windows 10 Using 5.9.13
  6. Why, but WHY! I always forget to use another browser if i get lots of crashes LOL! Thanks for reminding me this guys. By the way, if you are reading this and wondering how to switch browser: 1) Go under TOOLS menu at the top of UB 2) Then OPTIONS 3) Select 21 in the Browser pull down menu, instead of 39
  7. Hi Jason I'm getting crashes too lately. Version 5.9.13 Don't know if i should open a tracker ticket for you guys to work it out. The thing is, i don't know where to start as it's doing this with various bots (on the creation process and testing them) Cheers
  8. Ahhh thanks NICK! Yeah you are right! It doesn't work all the time using IN SHARED BROWSER (odd?) Cause i did something similar as you the first time and it wasn't working. Why i tried the WITH EACH command.
  9. How come this doesn't work? What's my mistake guys? ui open file("Get urls",#geturls) clear list(%geturls) add list to list(%geturls,$list from file(#geturls),"Delete","Global") wait(3) thread spawn($list total(%geturls),5) { with each(%geturls,#urls2) { in shared browser { navigate(#urls2,"Wait") wait($rand(3,10)) } } wait(2) } Now what i'm trying to accomplish is that the bot goes to the next url from a list, into a shared browser. So let's say i got 50 urls in the list %urls Well it will popup 5 shared browser with: url1 in shared browse
  10. Now i don't want to sound alarming or bitch about the product. I just want to know if i'm the only one having lots of problems with 5.9.10 (latest update)? That would mean that i would have to look on my end (why i'm asking) and not create trackers for the various issues. I'm having all kinds of problems clicking on things. Lots of "freezing" that needs reloading UB entirely. Selecting stuff is hard etc... Mom, am i alone lol.... Thanks guys EDITED: For instance this. add list to list(%profileurls,$scrape attribute(<href=w"http://*.site.com/profil/">,"fullhref"),"Delete","Glob
  11. How can we show in UI STAT, the total number of items in a list? ui open file("Get urls",#geturls) ui stat monitor("Where are we:",#wherearewe) set(#wherearewe,1,"Global") clear list(%get urls) add list to list(%get urls,$list from file(#geturls),"Delete","Global") loop($list total(%get urls)) { navigate($next list item(%get urls),"Wait") WaitForAll() increment(#wherearewe) wait($rand(3,10)) }This works fine as it will show as 1,2,3,4,5 etc.. But i want this: 1/5000 2/5000 etc... Minding i have a 5k item list of course So one out of 5k done, two out of 5k done and so on. S
  12. Ohhhhhhhhhhhhhhhhh so clever! Why i love this board! So simple and yet so effective! I'm better with a guitar/keyboard and a mic i guess. Oh well, i'll get the hang of it in a decade from here or so LOL! Thanks deliter
  13. THANKS A LOT MATE! By the way, is this working for you wait for browser event("DOM Ready","") wait for browser event("Everything Loaded","") ain't talking about your example here but in general? Looks like everytime i want to use one of these (or both) it never waits? It moves on to the other node no matter what ? By the way if anyone else has a trick, shoot please! Thanks
  14. loop(20) { run javascript("window.scrollTo(0, document.body.scrollHeight);") wait(3) } This is what i am using right now, to scroll down pages like Pinterest. You know when stuff is always added to the page as you scroll down ? The thing is, i want the bot to stop when there's nothing else to add but the problem is, there's nothing to tell the bot that it has reached the bottom. Well nothing i could see that would make it stop. Like use a WAIT FOR ELEMENT command or something. How would you do this ? Is there a "if there's nothing new to add to a list stop". Command or trick ? Heck
  15. ui stat monitor("number picked",#randomselector) set(#randomselector,$rand(1,5),"Global") if($comparison(#randomselector,"<= Less than or equal to",4)) { then { alert("number {#randomselector} selected") } else { alert("number five selected (else)") } } Here above is a little code to understand how to randomize selections. Well it's one of the ways... Ex: You want the bot to click on YES (or whatever) more OFTEN. Well you would replace the ALERT COMMAND with your "Yes" CLICK COMMAND (or whatever you wish the bot to do) So numbers from 1 to 4 are GO, do some
  16. What would be cool is if we could STAT UI what we see in the debugger ? Ex: you have a %list growing up as you scrape pages, well you could show the number in a UI STAT. Right now if you do this, it shows everything that's in the list! So let's say it's urls in the %list, well the top panel will get filled with the urls when all i want to show is the number like in the debugger Debugger shows %list 85 Well i want 85 to show up not http://www.site.com/whatever/1 http://www.site.com/whatever/32 http://www.site.com/whatever/43234 http://www.site.com/whatever/122 http://www.site.com/whatever/76
  17. I'm also trying this: ui drop down("Headless","On,Off",#headless) set headless browser(#headless) allow javascript("Yes") allow css("Yes") allow images("Yes") allow flash("Yes") Seems to be doing great too! Well at least it's not crashing all of the time...
  18. Anyone knows where i could find a tutorial on the LIST SCRAPER command ? I don't know what to enter in the INPUT field, as weird as it seems? While at it I'm trying to grab the number of urls/lines/items on a list (or a saved file), so i can show it with UI STATS Ex: Ok now you got 121 urls scraped so far... Let me know Thanks
  19. STEALTH IS OUT! UPGRADE boys and girls Heck i wanted to go to sleep. Thanks SETH lol....
  20. Jason. Our bots must be protected right ? You just provide the store front in a way ? (me and engrish)
  21. Will try this right away THANKS FRANK! edited: hOW THE HECK DID YOU COME UP WITH THIS ONE LOL! So simple! Now i'm trying to figure out when to trigger this on multithreaded bots. Probably in the begining of each loop i guess ?
  22. I will as soon as the new version is out. Soooooo many projects in my head!
×
×
  • Create New...