Jump to content
UBot Underground

myubo

Members
  • Content Count

    67
  • Joined

  • Last visited

Everything posted by myubo

  1. I ended up using clicks to make i work: click(<id="ui-id-4-button">,"Left Click","No") wait(1) mouse over(<id="ui-id-10">,"No") wait(1) click(<id="ui-id-10">,"Left Click","No")
  2. ⛔ Can't seem to figure out how to change the dropdown menu on the code. Can anyone have a look? <label class="json-form-item select auto_fuel_type req variant-select"> <div class="label-wrapper"> <span class="label">fuel</span> </div> <select tabindex="1" name="auto_fuel_type" class="json-form-input no-js auto_fuel_type"> <option value="">-</option> <option value="1">gas</option> <option value="2">diesel</option> <option value="3">hybrid</option> <option value="4">ele
  3. Wow thanks so much! I've needed this in the past but didn't know it was possible so I figured out another way of doing it. Should have posted a question a long time ago
  4. So I'm trying to click on this innertext on the code below, but since the NUMBER before the word VIEW, and CLASS constantly change how would I go about this? <div class="tBJ dyH iFc">36 Views</div> I was hopping something like this would work but it doesn't: click(<innertext="* Views">,"Left Click","No")
  5. Have issues with some of my bots hanging freezing. Was typing to figure out a way to make the bot do an automatic reset browser if the bot doesn't for example finish a loop within 60 seconds. If the bot freezes/hands on a loop it would automatically do a reset browser and start over so I don't have to manually kill it and restart it. Can I have in new browser check on the first browser and if its frozen have it reset the both browsers maybe and start from the start? Or is there another easier way to get this done?
  6. Actually if anyone else has issues with file ref_browser_log.txt becoming HUGE, mine got to 12gb once. Just go to the file and under preferences change it to read-only. This is good for personal use, not great if you are selling bots however.
  7. Awesome thanks bud, changing AppData to Application Data, and removing Roaming worked . Final code: delete file("{$special folder("Application Data")}\\UBot Studio\\cef_browser_log.txt")
  8. Hi I need to add a line to my bot which deletes a file from AppData/Roaming/.../file.txt Since every person has a different path to AppData folder how do you go about this? How do you find out what the current users username is e.g: C:\\Users\\ THIS COULD BE ANYTHING \\AppData\\...? I tried without success: delete file("{$special folder("AppData")}\\Roaming\\...
  9. Im trying to see if there is some text on a page, that text is set a variable. What am I doing wrong here? if($exists(<innertext={#firstname}>)) { then { alert("yes") } else { alert("no") } }
  10. I've tried a bunch of stuff but I'm just a beginner. This is the link I'm working on: https://plus.google.com/s/cars/top If I scrap the innertext # member and compare that to 3000 or more, how do I than click on the join button which is right next to that particular number? If you could point me to some similar example somewhere that would be awesome
  11. Hey everyone I'm trying to make my bot only join googleplus communities which have more than say 3000 members. How can I make the bot only click on communes with more than X amount of members?
  12. Wow so simple and yet I would have never figure that out without asking. Thanks so much Pash
  13. I know its not grabbing full URL, thats what I'm trying to figure out. I don't know how to add http://facebook.com to the beginning of the url. Because when I'm scrapping facebook page for groups it doesn't have a full URL just partial. So how do I tell uBot to add http://facebook.com the the beginning of each scrapped group?
  14. Noob coder here guys cant figure out how to make this work. I am scraping FB Group URLs to a list, I can than do a click random list item and it work fine. BUT if I try to do navigate random list item instead of click random list item it does not work. URL at the top of the bot for example just looks like something like this: group/88475795 instead of facebook.com/group/88475795 if I try navigate random list item. How can I add facebook.com/ to the last bit that I scrapped which is /group/88475795 and get navigate to work? THIS WORKS: add list to list(%grouplinks,$scrape attribute(<
  15. That worked. Thank you so much I spend a ton of time googling and trying dif stuff and it was just that simple lol
  16. Sorry guys total noob with coding. I'm trying to send an email to myself anytime an error occurs in one of my bots. I know I can just put #error in the body of the message but I would also like to add some text + error number. So body of the message would look something like this: facebook bot, error number #error I dont know how to put plain text and #error in the same field How do I code that into the "So how\'s it going" field? connect to mail server("SMTP With SSL", "Username Here @gmail.com", "Password Here", "smtp.gmail.com", 587) { send email("recipient's email here"
×
×
  • Create New...