Jump to content
UBot Underground

Sanjeev

Fellow UBotter
  • Content Count

    356
  • Joined

  • Last visited

  • Days Won

    9

Everything posted by Sanjeev

  1. Okay , for the impatient ones - here is the link to a screencast from the course! https://www.sequelbytes.com/s/preview/courses/The-SQL-Freedom-Course#6125eb6a0cf2efe4aac475e8
  2. Hey TJ! Thanks for replying! I have made the first module free. It has links to 2 full videos + many free lessons - so you can taste the goods before purchase . You guys can check it out here. Thanks for the heads Up! https://www.sequelbytes.com/s/preview/courses/The-SQL-Freedom-Course#6125eb6a0cf2efe4aac475e8
  3. Greetings from a fellow Ubot Studio user. I’ve been working on speeding up bot creation, and this might be interesting to you, if you create bots using UbotStudio or some other platform. If you've a minute to spare - check this out. It will be worth it! . Sanjeev. P.S - If you've questions, just hit reply and ask away,i'll be glad to answer any questions you may have.
  4. Thanks Brutal! Not just for Noobs.. Even the most experienced user can make use of these tools.. it automates tasks you would need to by Hand..unless you have coded your own solution..similar to this.. Also - [planned..] the quick Ui tool will have presets option so you can save and load Ui code presets for even faster Ui creation. Ini settings creator will have options for creating multi tab settings and also [ if you want for some edge cases] - multiple settings per Tab! I will add a detailed video , which Will be available in downloads section which will take you through the
  5. ---------------------------------------------------------------------------------------- A special Bonus for all my Upad Ninja customers - When you buy Uassistants , you also get access to the new Ubot x dark theme for upad ninja! https://cl.ly/4c916ccec13f https://cl.ly/00d9b5f3c30d ---------------------------------------------- Plus, you will get access to 2 videos where I show you how you can use upad ninja with notepad++ as a super cool snippets manager for Ubot studio [believe me when I say this , it pretty much beats every snippet manager available onlin
  6. Introducing uAssistants! - A ubotter's swiss army knife! uAssistants is a ubot Studio code builder and helper - it saves time by building your ubot studio code and by automating tedious tasks which you had to perform manually, saving you hours of wasted time. It does this by first letting you select a Ubot studio file from disk to work with, and then you can select an 'assistant' to automate a 'task' on that .ubot file! Current assistants - -------------------------- Ubot file to text - single click Extract any Ubot studio file to disk Generate Sa
  7. One of TJ's free plugins also has windows automation features..you could start there first..? --- https://www.botguru.net/ubot-plugin-os-addins/ -SENDKEYS (sends keys to window by name) -SENDKEYS GENERAL (non window specific) -SENDKEYS FUNCTION (non window specific) -SENDKEYS (wait for window) you need to sign up here.. https://www.botguru.net/ubot-user-free-plugins/ ---------------- Also - watch this video by Frank on automating windows using an app called Macro scheduler.. the takeaway from his video is that the right way to go about doing windows automation is primarily using
  8. Have you actually finished that HTTP video course? And still cannot do this?
  9. Sigh! Its always the same story with Ubot Studio... What are we.. Alpha testers/beta testers..?
  10. sign up here - https://www.botguru.net/ubot-user-free-plugins/
  11. Dan has made available great free HTTP post Video Tutorials , it also covers how to use cookies in depth - using http post plugin. Join his Facebook group ! https://www.facebook...xBrowserPlugin/ The videos are free for his Facebook group members. Log into your Facebook account and request invite as a Ubot studio user.
  12. example - how to load a cookie from the browser into a variable and use it with the HTTP plugin: http://network.ubotstudio.com/forum/index.php?/topic/16478-http-plugin-example-move-cookies-from-browser-to-http-plugin/?/topic/16478-http-plugin-example-move-cookies-from-browser-to-http-plugin/
  13. Update: This Offer will be available only till October 15th! After that , Upad Ninja will not be available for sale anywhere.
  14. this should get you started.. set(#main phrase,"my best city","Global") define create variations(#phrase, #insert word) { clear list(%variations) add item to list(%variations,$replace regular expression(#phrase,"(?<=\\w+)\\s(?=\\w+\\s)",#insert word),"Don\'t Delete","Global") alert($list item(%variations,0)) add item to list(%variations,$replace regular expression(#phrase,"(?<=\\w+\\s\\w+)\\s(?=\\w+)",#insert word),"Don\'t Delete","Global") alert($list item(%variations,1)) add item to list(%variations,$replace regular expression(#phrase,"$",#insert word),"Don\'
  15. set(#load html,$plugin function("ExBrowser.dll", "$ExBrowser Document Text"),"Global") use the above code - it will load html to variable
  16. what you need to do in that case - 1. get document text of the bing.com search page - using exbrowser 2. then use the generic xpath parser and some kind of loop to parse each element- [ad block] separately this way you can get your elements using xpath and also ensure they are readable.
  17. Hey! Join his Facebook group ! https://www.facebook.com/groups/ExBrowserPlugin/ This tool is free for his Facebook group members. Log into your Facebook account and request invite as a Ubot studio user.
  18. from inside DevTool press ctrl + f - to open search window then type in ttip https://cl.ly/304e0fd41d02
  19. Use chrome dev tools - right click on element on page -> select inspect then study the html source code...
  20. then this code works - add list to list(%bing ads scraped,$list from text($plugin function("ExBrowser.dll", "$ExBrowser Scrape List Elements", "//DIV[@class=\"b_vlist2col b_deep\"]"),""),"Delete","Global") ------------
  21. add list to list(%bing ads scraped,$list from text($plugin function("ExBrowser.dll", "$ExBrowser Scrape List Elements", "//h3[@class=\"ad_esltitle\"]/.."),""),"Delete","Global")
  22. this appears to work on my side - plugin command("ExBrowser.dll", "ExBrowser Launcher", "Chrome", "", "") plugin command("ExBrowser.dll", "ExBrowser Navigate", "bing.com") plugin command("ExBrowser.dll", "ExBrowser Type Text2", "//input[@class=\"b_searchbox\"]", "Yes", "dropshipping", 10, 50) plugin command("ExBrowser.dll", "ExBrowser Send Special Key", "//input[@class=\"b_searchbox\"]", "Enter", "") add list to list(%bing ads scraped,$list from text($plugin function("ExBrowser.dll", "$ExBrowser Scrape List Elements", "//li[@class=\"b_ad\"]//div[@class=\"b_caption\"]")," "),"Delete","Global")
  23. understood.. try this while I look into this more - xpath - my bing ad search - from India - which country are you from - I have Vpn - can change to your region and try bing ads again //div[@class]/div[@class=b_caption]/p
×
×
  • Create New...