Jump to content
UBot Underground

Varo

Fellow UBotter
  • Content Count

    111
  • Joined

  • Last visited

  • Days Won

    9

Everything posted by Varo

  1. i dont know for sure when they will fix this bug, but you better find another solution. You can use external browser plugin like ExBrowser or new free plugin by Deliter.
  2. try this : add list to list(otList,$list from text($plugin function("Bigtable.dll", "Large list return", "LargeListName"),$new line),"Delete","Global")
  3. this bug is already add to tracker since 23 days ago .. https://tracker.ubotstudio.com/issues/1225
  4. use this : add list to list(%filter5,$find regular expression(%filter4,".*groups\\/[\\d\\w\\.]+\\/"),"Delete","Global")
  5. try this add list to list(%filter,$list from text($replace regular expression(%groups,"permalink/","")," "),"Delete","Global")
  6. Yes you can isolate each of those. You can achieve it with 2 ways: 1. based on sequence results no 1 (//td[@class='stat_label']/h3[contains(text(),'VISITS')]/../../td[2])[1] results no 2 (//td[@class='stat_label']/h3[contains(text(),'VISITS')]/../../td[2])[2] results no 3 (//td[@class='stat_label']/h3[contains(text(),'VISITS')]/../../td[2])[3] 2. based on h3 text --> //td[@class=chart]/h3 as starting point and then you continue the xpath to the destination element http://i.imgur.com/3HsaAul.png
  7. Hi, for this kind of page, the easiest way is using xpath parser. You can use Free Xpath Plugin by Dan. http://network.ubotstudio.com/forum/index.php/topic/19449-free-xpath-plugin/ here the code: navigate("http://bazoogle3.com/testscrape2/","Wait") set(#var1,$plugin function("XpathPlugin.dll", "$Generic Xpath Parser", $document text, "//td[@class=\'stat_label\']/h3[contains(text(),\'VISITS\')]/../../td[2]", "innertext", ""),"Global") alert(#var1) and here are the results: http://i.imgur.com/gjWkIua.png Hope it helps.
  8. Use free plugin Large Data here http://network.ubotstudio.com/forum/index.php/topic/16308-free-plugin-large-data/
  9. I had found no solution using ubot browser, but you can solve it using ExBrowser.
  10. You can use free plugin, File Management Plugin here : http://network.ubotstudio.com/forum/index.php/topic/13237-free-file-management-plugin-multiple-commands-and-functions/
  11. be sure to wait until everything loaded. Or wait for element displayed.
  12. it should be simple, plugin command("ExBrowser.dll", "ExBrowser Click", "//button[@title=\'I like this\']")
  13. leading spaces, trailing spaces, and space more than one between words.
  14. Thanks acamso, But with regex \s+ you are matching whitespace character which is space, tab, newline, and carriage return with your function above, all newline and carriage return also will be replace with space right ? How to remove extra spaces only, in every line, without removing tab, newline, and carriage return ?
  15. I using 5.9.33 (not the latest version) and @font-face render correctly.
  16. @uBotForMe Try this code : ui open file("browse",#uiopen csv) ui stat monitor("Loop counter",#row) ui text box("Link",#websitelink) create table from file(#uiopen csv,&csvtable) set(#row,0,"Global") clear list(%row) loop($table total rows(&csvtable)) { add item to list(%row,#row,"Don\'t Delete","Global") increment(#row) } thread spawn($table total rows(&csvtable),5) { Go($next list item(%row)) wait(1) } define Go(#rowtable) { in new browser { allow images("No") navigate(#websitelink,"Wait") wait for browser event("Everything Loaded",10)
  17. This is loop while with three condition: set(#countloop,0,"Global") loop while($both($both($not($exists(<innertext="THE LINK TEXT IS INSERTED HERE">)),$not($exists(<innertext="Captcha Page">))),$comparison(#countloop,"<= Less than or equal to",#put_your_maximum_loop_here))) { wait for browser event("Everything Loaded","") wait(1) then { run javascript("window.scrollTo(0,document.body.scrollHeight); ") focus(<id="pagnNextString">) mouse over(<id="pagnNextString">,"No") click(<id="pagnNextString">,"Left Click","No")
  18. do you mean you have three "condition to wait for" : 1. not contain link text 2. less than or equal your maximum loop set 3. not containing captcha page. If so, it can be done. Just change one of your condition to "both" and then put your another two condition.
  19. You can set variable to count your loop before loopwhile begin. Then use 'both' function in loopwhile, and then put increment in the end of loopwhile. See code below set(#countloop,0,"Global") loop while($both($not($exists(<innertext="THE LINK TEXT IS INSERTED HERE">)),$comparison(#countloop,"<= Less than or equal to",#put_your_maximum_loop_here))) { wait for browser event("Everything Loaded","") wait(1) then { run javascript("window.scrollTo(0,document.body.scrollHeight); ") focus(<id="pagnNextString">) mouse over(<id="pagnNextString">
  20. You must use wildcard to properly select captcha image Like this type text(<last name field>,$solve captcha(<src=w"/cacaca.php?_CAPTCHA&t=*">),"Standard")
  21. ubot supports Regex : Yes ubot support xpath : No, but you can install free plugin from Dan, General XPath parser
  22. Check this link for deliter plugin http://network.ubotstudio.com/forum/index.php/topic/19608-css-selector-plugin-free/
×
×
  • Create New...