Jump to content
UBot Underground

Sanjeev

Fellow UBotter
  • Content Count

    356
  • Joined

  • Last visited

  • Days Won

    9

Everything posted by Sanjeev

  1. As @BeerNut stated, Exbrowser/selenium is detected on Manta. Maybe the above modification might be worth trying on Manta, to see if it works?
  2. How about implementing this feature in Exbrowser? It would make it harder for websites to detect Selenium.. https://stackoverflow.com/questions/33225947/can-a-website-detect-when-you-are-using-selenium-with-chromedriver please read the post with the green tick mark
  3. 128 users are online (in the past 15 minutes) Maybe they are not participating actively but still reading - lurking? Or are these numbers for bots .. or misleading?
  4. I have simplified your code above to just focus on the problem..which is downloading the file to disk, take a look.. this worked on my side.. I was able to successfully download the file as csv to disk. navigate("http://ytcomments.klostermann.ca/","Wait") type text(<url field>,"https://www.youtube.com/watch?v=a2AGRYwyUqU","Standard") click(<id="scrape-btn">,"Left Click","No") loop(1) { click(<id="save-csv">,"Left Click","No") wait(1) plugin command("WindowsCommands.dll", "click dialog button", "Save As", "Save") } I clicked on that 'red download button' ma
  5. A slightly better way... I am trying to account for any number of followers.. 0,10,200,245 ,2.5k etc set(#scraped string,"17 board • 2.1k followers","Global") set(#result,$replace($replace($find regular expression(#scraped string,"\\d+(\\.\\d+k)?(?= followers)"),".",","),"k",00),"Global") I am also assuming that there is a single space after 'followers'. Code can be made more robust by allowing zero or more spaces after followers. set(#scraped string,"17 board •22.7k followers","Global") set(#result,$replace($replace($find regular expression(#scraped string,"\\d+(\\.\\d+k)?(?=\\s*follo
  6. That's strange.. there is an option to run the shell hidden... http://ubotdev.com/free-plugin-advanced-shell#function-shellcommand-prompt-hidden Could you post your code..?
  7. posting your code + website may help trouble shoot your problem better. I understand its not always possible to do that.. just saying...
  8. Like Varo said your best bet would be - regex. A Replace Regular Expression function would help here.. also , this is a good free plugin for text extraction - http://ubot-plugins.com/free-string-management-plugin/ Finally a simple replace - http://wiki.ubotstudio.com/wiki/Replace combined with trim function might help in simple situations like the one you mentioned.
  9. This might help... http://wiki.ubotstudio.com/wiki/UI_html_window Also, there are paid options.. where you can have custom html dialog open up..which can store values to a ubot list or variable.
  10. Your best bet would be to open a ticket with the Ubot Support. Attaching a screen grab of the email receipt may help speed things up even more. If the 'free courses' are by Code Docta , then messaging him directly may help..?
  11. The receipt has download links in them...when you buy from the Ubot Store, even for free products. Look closely maybe you missed the download link?
  12. Hmm... but as I use ExBrowser for browser based automation, didn't get to that issue...
  13. One Common practice is to break up your code into different tabs - this may help. If you have been running your Ubot Studio application for a long time - it starts to slow down a bit -so restarting the app may be a good idea.
  14. [ Price - $117.0 - Ubot studio v5 & ExBrowser Source Code] This is a Ubot studio 5 source code. In effect you get A Ubot file [.ubot]Plus the compatible chrome browser [portable]. When You Buy My source Code and open up the File You Won't Feel Lost! The entire source code is split logically into multiple tabs which makes understanding and working with the code much more easy.Each tab has a video walk through of the code in that tab in detail Every single node of my source code has relevant comments to guide you. Source Code Dependencies – A commercial plugin – ExBrowser – V1.3.2.
  15. Hello Guys! Here is My First Ubot studio ExBrowser Tutorial - for you. I Hope you like it. There are 2 parts to it - The 1st video takes a detailed look at the problem - which you may encounter due to web page overlay elements in the header and footer area on many websites like e.g Youtube.com The second video provides a solution which may work for you in say 75% of the cases you may encounter. Considering the myriad web design setups you encounter while automating websites via Browser based automation - I think 75% is a pretty good number. But have a look and decide for yoursel
  16. Hi, I've been through this already, contacted support.. they refused ..saying - use the store [where no one ever looks..!] I spoke to Hello Insomnia, he said , neither can he open a new thread in Buy Sell Free section...! Wonder whats going on..?
  17. Here you Go! http://s000.tinyupload.com/index.php?file_id=97334321928942828173
  18. Thanks for your reply - but I find in some circumstances nested ifs become unavoidable, also, Ubot does not appear to have a clean way to return back - if you are inside a 'loop' node? Tadej, I take it you mean multiple nested ifs will not make Ubot Unstable -no matter how deep the nesting? Thanks.
  19. Fellas? Just wanted to know from your experience with using nested ifs- If I have code like this - multiple nested ifs.. if("") { then { if("") { then { if("") { then { if("") { then { if("") { then { } else { } } } e
  20. I have a feeling this could be Death By Captcha API Issue?
  21. a2mateit - what I have done is I have used Aymen's code.. try it.. it works - every time! I have tried pash's plugin And got the same response you got. Use Aymen's code for check status works flawlessy.
  22. What I do currently is If I do not get the reply the first time - I do a check status request using the previous captcha Id. This works every time.
×
×
  • Create New...