Jump to content
UBot Underground

allcapone1912

Fellow UBotter
  • Content Count

    146
  • Joined

  • Last visited

Everything posted by allcapone1912

  1. How can I click on Youtube like(below video, not from comment) Currently, I use Click by coordinate but it's not very good(different size, browser...) Not sure why I am not available to click it, perhaps youtube use some java/script to block/hide - no sure <button class="yt-uix-button yt-uix-button-size-default yt-uix-button-opacity yt-uix-button-has-icon no-icon-markup like-button-renderer-like-button like-button-renderer-like-button-unclicked yt-uix-post-anchor yt-uix-tooltip" type="button" onclick=";return false;" aria-label="like this video along with 16,215 other people" title="I
  2. How to pass a text parameter to HTML panel? example: ui html panel("<button onclick=\"ubot.runScript(\'SetStatus()\')\">GOOD</button> <button onclick=\"ubot.runScript(\'SetStatus()\')\">BAD</button> ",100) define SetStatus(#Status) { alert(#Status) } On click GOOD should alert "Good" I've tried: ubot.runScript(\'SetStatus(Good)\') ubot.runScript(\'SetStatus('Good')\') ubot.runScript(\'SetStatus(\"Good\")\') Any idea how to do that? I want to use only 1 define ubot.runScript(\'SetStatus(#different var for each button)\')
  3. thanks for your help you solve my problem I've test only with one define and yes, its work great
  4. my full code thread spawn(#TotalCycle,#threads) { increment(#OpenThread) increment(#cycle) LaunchBrowserThread(#my_threadId, #proxy) increment(#my_threadId) set(#proxy,$random list item(%proxy),"Global") decrement(#OpenThread) } define LaunchBrowserThread(#my_threadId, #proxy) { wait($rand(1,3)) plugin command("ExBrowser.dll", "ExBrowser Launcher", #browser, $plugin function("ExBrowser.dll", "$ExBrowser Set HTTP Proxy", #proxy, "", ""), "") plugin command("ExBrowser.dll", "ExBrowser Navigate", $random list item(%link)) plugin command("ExBrowser.dll", "E
  5. Hi, have a problem with Local Variable and can't figure out what I am doing wrong. My code: define RandomOn1stPage(#my_threadId, #proxy) { add list to list(%found,$plugin function("ExBrowser.dll", "$ExBrowser Generic Xpath Parser", $plugin function("ExBrowser.dll", "$ExBrowser Document Text"), "//a[contains(@href,\'{#LinkToSearch}\')]", "href", ""),"Delete","Local") set(#found,$random list item(%found),"Local") alert(#found) plugin command("ExBrowser.dll", "ExBrowser Click", "//a[contains(@href, \'{#found}\')]") } With Local Variable its alert the correct link to click but n
  6. Any idea how to close/disable notification about new extension running in developed mode? I've tried solution Disable Alert / Notification Popups by bot-factory.com but without success. plugin command("ExBrowser.dll", "ExBrowser Launcher", "Chrome", "", "{$plugin function("ExBrowser.dll", "$ExBrowser Load Browser Extension", $random list item(%extensions))}{$plugin function("ExBrowser.dll", "$ExBrowser Generic Chrome Parameter", "--disable-notifications")}") plugin command("ExBrowser.dll", "ExBrowser Navigate", "https://www.google.com/") plugin command("ExBrowser.dll", "ExBrowser Confirm Di
  7. plugin command("ExBrowser.dll", "ExBrowser Save Screenshot Element", "x://img[@style=\'display: inline; width: 100%; height: auto; max-width: 200px;\']", "{$special folder("Desktop")}/test.jpg", 2)
  8. any idea how to close Ubot script but the ExBrowser WIndow to remain still open even after script is closed?
  9. any idea how to close bot with Close bot command but the ExBrowser Window to remain still open?
  10. thanks for your quick reply i will use GUI Hero, i bought it some months ago but not really used it until now
  11. Multiple HTML panel in one bot Currently have a PHP script that check proxy and make some notes I want to do all that via uBotStudio But i am stuck here on how to add Multiple HTML panel in one bot example: i have 3 HTML panel MAIN, STEP1 and STEP2 what i need is something like this(not working): ui html panel("<button onclick=\"ubot.runScript(\'Step1()\')\">Step1</button> <button onclick=\"ubot.runScript(\'Step2()\')\">Step2</button>",200) define Step1 { ui html panel("Step1",200) } define Step2 { ui html panel("Step2",200) }
  12. thanks Dan for your help you lost a lot of time with my problem and with making a video for me thank you for that, you really help me out understand this kind of issue Also, after watcking tutorial from your site i finally resolve the issue Once again, thanks for your time
  13. hi have a problem with my code need to click an images with specific ALT need to click image with ALT = "Get Quotes" ive tried x://a[@alt=\'Get Quotes\'] x://img[@alt=\'Get Quotes\']
  14. have a question currently i have installed on my wp site Plugin Jetpack Publicize, so each new post are automatic publish on multiple Social Networks If i will post with your Advance wordpress will Plugin Jetpack Publicize still work, will automatic publish on social network?
  15. can someone tell me how to display results in a tooltip/balloon outside the script window, on top of all opened browsers? it is possible with ubot studio?
  16. all your download link from your site not working if you have a minute, please check this error - i need some of your plugin urgent
  17. hi, i just install new windows 10 and i can't use Firefox with ExBrowser Ive tried to unistall Firefox and install a older version - still the same problem Chrome and PhantomjS works fine, problem only with Firefox
  18. hi, need some help with my scripts Need to Change Dropdown State with ExBrowser, ive tried different combination but without any results plugin command("ExBrowser.dll", "ExBrowser CleanUp") plugin command("ExBrowser.dll", "ExBrowser Launcher", "Firefox", "", "") plugin command("ExBrowser.dll", "ExBrowser Navigate", "https://i.aol.com/reg/signup") wait for browser event("Everything Loaded",10) plugin command("ExBrowser.dll", "ExBrowser Change Dropdown2", "x://select[@name=\'countryCode\']", "Romania +40", "Innertext")
  19. i am working on a script that will scrape info from whitepages.com Currently my script work with ExBrowser but its work very slow(i use proxies) ive tried to use http get function to get info but usually its block the ip after 2-3 times(if i use browser its block ip only after 200 times) my code plugin command("HTTP post.dll", "http set headers", "Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8") plugin command("HTTP post.dll", "http set headers", "Accept-Language", "en-us,en;q=0.5") set(#yp,$plugin function("HTTP post.dll", "$http get", "http://www.whitepages.co
  20. Thanks for your reply but still script is not working, again the problem is in Change Attribute Element part of your code that dont work: plugin command("ExBrowser.dll", "ExBrowser Change Attribute", "x://input[@id=\'MemberName\']", "value", $account data("Username")) the Xpath expresion "x://input[@id=\'MemberName\']" is correct and work for ExBrowser Type Text (Human Delay) but its not working for ExBrowser Change Attribute The problem should be in hotmail page source, ive look throw the html page source and there username not apear there in any way
  21. nobody gave me any ideas just curious: it is not possible or just nobody saw my post?
  22. thanks for your help i understand your idea and will test it and your video should be very helpful, will buy it in the nearest future
  23. EXCELLENTTo be honest, i've already forgotten about my PlayGame bot because i thought it is impossible but you shown me that it is possibleThank you very much
  24. need some help with xpath i want to use ExBrowser Wait For Element(wait for element1 or element2) plugin command("ExBrowser.dll", "ExBrowser Wait For Element", "x://input[@class=\'LinkContinue\']", "Appear", 30) plugin command("ExBrowser.dll", "ExBrowser Wait For Element", "x://span[contains(text(), \'Your registration could not be processed\')]", "Appear", 30) so, i want to combinate both element in in one column something like this: plugin command("ExBrowser.dll", "ExBrowser Wait For Element", "x://input[@class=\'LinkContinue\'] OR x://span[contains(text(), \'Your registration could not
×
×
  • Create New...