Jump to content
UBot Underground

esthonwood

Members
  • Content Count

    25
  • Joined

  • Last visited

Everything posted by esthonwood

  1. Hi guys! I'm working on logging in to a client's website but when I do it on UBot, a popup appears instead of normally redirecting to the user dashboard. When I log in using a regular desktop browser, the popup doesn't appear. I have already used the "user agent" command but it still doesn't work. Could it be that their website detects that it's a ubot browser and prevents it from logging in? How do I get around this? Thanks in advance for any help and suggestions!
  2. Hi everybody! So I'm making a bot for a client and I encountered a problem in the login process. When logging in from a regular browser, a successful login redirects me to the user dashboard. But when logging in from UBot successfully, it doesn't redirect to the user dashboard. Instead it shows a modal or in-page popup with nothing on it except for the "Close window" link. Any thoughts on how to get around this? Thanks in advance. Cheers!
  3. Thank you for the suggestions, guys. I'll check out Meter's system. Cheers!
  4. Hi guys, I want to sell my bots. Do you have ideas or suggestions on how to go about licensing them? Thanks
  5. How to add the "/auto" to the scheduluer? I can't seem to make the scheduler work in UBot 5. Any help or tutorial is greatly appreciated.
  6. Yeah me too. Can anybody create a tutorial on how to do this, please?
  7. Hi guys, so I made this bot to scrape tumblr users by search keyword. Here's what I did: 1. Enter a keyword on the search box. 2. Scroll down the page 10 times 3. Scrape users Is there a faster way to do this?
  8. Hi TC, what I'm trying to do is open each URL (from the %url list) inside a thread. When you say it works fine for you, do you mean that the proxy is successfully changed and the URLs are loaded fully? You see, in my case, it would open the URL inside a thread and the browser address bar would indicate that it's loading the URL but the browser just shows a blank white page.
  9. Hi Traffik Cop, I've adopted the code from your proxy checker above. Any ideas why, when I add the proxy, the bot won't work? I'm sorry for continuously bugging you guys, but I just can't seem to make the proxy work in a multi-thread Any help is greatly appreciated. ui open file("Proxy file", #proxy file) ui drop down("How many threads?", "2,3,4,5", #num threads) define createLists { clear list(%proxy list nest item) clear list(%url list) add item to list(%url list, "www.google.com", "Delete", "Global") add item to list(%url list, "www.bing.com", "Delete", "Global") add
  10. the proxy name is not the same as the password.
  11. Ok, so I've made some changes on my code and I've set all the variables inside the thread to be local. It still doesn't work. I apologize for bugging you guys, but I've been at this for days and I can't make the proxy to work inside the thread Any ideas? comment("Proxy is in this format: IP:PORT:USERNAME:PASSWORD") ui open file("Proxy", #proxy list) clear list(%proxy list) add list to list(%proxy list, $list from file(#proxy list), "Delete", "Global") clear list(%url list) add item to list(%url list, "www.google.com", "Delete", "Global") add item to list(%url list, "www.bing.com", "Delete",
  12. Ok, I think I understand it now. I will let you know how this turns out. Thanks so much for your help
  13. I followed LoWrIdErTJ's multi threading example except that I removed the defines. Is it really necessary for multi threading to work to put the commands in different defines? Also, I don't think there's a problem with #url list index because the whole code works. It only stops working when I added the proxy inside the thread. Try removing the setProxy(#current proxy) command from inside the thread code and you'll see that it works.
  14. Hi guys, so the multithreading works with my code below but only if the "sexProxy" define is removed from inside "thread code". How can I make it work with proxy? Any suggestions? define setProxy(#fnProxyWithCredentials) { set(#fnProxyWithCredentials, #fnProxyWithCredentials, "Global") clear list(%fnProxy) add list to list(%fnProxy, $list from text(#fnProxyWithCredentials, ":"), "Delete", "Global") set(#fnProxyUsername, $list item(%fnProxy, 2), "Global") set(#fnProxyPassword, $list item(%fnProxy, 3), "Global") set(#fnProxyWithPort, "{$list item(%fnProxy, 0)}:{$list
  15. Wow, this is awesome, thanks, zap! I didn't know about typing text to an element other than a textbox and using the word "DOWN". Is there a documentation for this?
  16. Hi guys, so I want to scrape the images in the media grid but scrolling down to the bottom doesn't seem to work. The media grid overlays the timeline. When I used the javascript to scroll to the bottom, it's the timeline that's being loaded instead of the media grid. When I use the mouse to scroll down, that's the only time that the media grid is shown. Any ideas? Here's my code: navigate("https://twitter.com/MariahCarey/media/grid", "Wait") wait for browser event("Everything Loaded", "") loop(5) { run javascript("window.scrollTo(0, document.body.scrollHeight);") wait(3) }
  17. This one seems to be the best and easiest solution than my complicated function LOL! Thank you for your help
  18. I created my own function, instead, but if mine doesn't work as expected, I will definitely try your suggestion. Thanks
  19. Hi guys, how can I add a user specified number of hours to the current date ($date)? For example, a user would input "6" and the script will need to add 6 hours to the current date. I have been using the datetime manipulation plugin but I can't seem to make it work. Any ideas? Thanks
  20. Yes, it worked for me but I had to put all my javascript between the closing body and html tags
  21. That's exactly what I did. It's not an elegant solution but it works and suits my purpose. Thanks
  22. Thanks for the suggestion. I'm having difficulty using "wait for element" when scrolling to bottom of a page where it has endless scrolling, like tumblr. I couldn't "catch" the element long enough to capture it. Any more suggestions?
  23. Hi guys, I noticed that the wait for browser event command (everything loaded) sometimes doesn't wait for the browser to fully load especially when it's dealing with sites that have endless scrolling and/or when it is inside a loop. I need to add an additional wait command of a few seconds after it. Any way to get around this problem? Thanks
  24. Hi there, I created a whole HTML page with jQuery using my NetBeans editor and it works perfectly when I tested it on Chrome. When I copied and pasted it to the UI HTML panel and compiled it, however, it didn't work. The checkboxes wouldn't be checked, and the textboxes gets cleared right after the focus left. Is there a workaround for this? Here's my UI HTML Panel: ui html panel("<!DOCTYPE html> <html> <head> <title>Tumblr Bot</title> <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"> <script src=\"htt
×
×
  • Create New...