Jump to content
UBot Underground

Bill

Fellow UBotter
  • Content Count

    39
  • Joined

  • Last visited

Everything posted by Bill

  1. Bill

    Program Freezes

    I'm using 5.9.50 I also had the same problem using an ini file for a db. Thanks for your help
  2. Bill

    Program Freezes

    Database is 15kb
  3. Bill

    Program Freezes

    I have a script that uses a SQlite DB. Data is retrieved DB to fill a dynamically filled dropdown menu and few other UI's. Everything works fine. But when the program isn't used for a few hours the script freezes and any data shown the in a UI and dropdown menu disappears.How can this be prevented?
  4. This worked for me (?<=\-\-\>)[0-9]*(?=\<\!\-\-)
  5. add list to list(%list,$find regular expression($scrape attribute(<class="normal">,"innerhtml"),"http\\:\\/\\/.*?(?=\\/)"),"Delete","Global")
  6. What works for me, is I turn off my AV while updating
  7. This worked for me run() define run { navigate("http://www.the-saleroom.com/en-gb/auction-catalogues/1818-auctioneers/catalogue-id-sr1810075/search-filter?page=1&pageSize=240","Wait") wait for browser event("Everything Loaded","") wait(2) set(#row,0,"Global") set(#pageination,$exists(<class="next">),"Global") clear table(&data) loop while($comparison(#pageination,"= Equals","true")) { if($comparison(#pageination,"= Equals","true")) { then { build_table() } else { } }
  8. This is a worth while course http://network.ubotstudio.com/forum/index.php/topic/18236-sell-ubot-web-scraping-course-its-finally-here/
  9. Is this what your after? navigate("https://www.dollartree.com/household/500/index.cat","Wait") wait for browser event("Everything Loaded","") clear list(%CategoryTitle) clear list(%CategoryUrl) add list to list(%CategoryTitle,$find regular expression($replace($scrape attribute(<id="left_nav_data">,"outerhtml"),"&",$nothing),"(?<=\\\"\\>).*?(?=\\<\\/a\\>)"),"Don\'t Delete","Global") add list to list(%CategoryUrl,$find regular expression($scrape attribute(<id="left_nav_data">,"outerhtml"),"(?<=href\\=\\\"\\/).*?(?=\\\"\\>)"),"Delete","Global")
  10. Ubot Buddy Lessons have been very helpful.
  11. See if this works for you ui text box("Phone",#phone) ui stat monitor("Name: ","{%first} {%lsname}") ui stat monitor("Address: ",%address) ui button("Check") { navigate("http://118.tdc.dk/search/go?what={#phone}","Wait") wait for browser event("DOM Ready","") clear list(%first) clear list(%lsname) clear list(%address) set(#listing0,$scrape attribute(<href=w"/person/*">,"fullhref"),"Global") set(#lastname,$find regular expression(#listing0,"(?<=\\+).*?(?=\\/)"),"Global") add list to list(%first,$find regular expression(#listing0,"(?<=person\\/).*?(?
  12. This worked set(#a,"<h3> <a href=\'/person/Firstname+Lastname/1234-City+A?what=12345678&n=1&page=1&sid=a*%5D%5DJEM%25%5CT0%22\'> Firstname Lastname </a> </h3>","Global") alert($replace($find regular expression(#a,"(?<=\\w+\\/).*?(?=\\/\\d)"),"+",$new line))
  13. You try this one http://www.domainhole.com/bulkcheck/
  14. This works for me (?<=NAME\:\<\/strong\>).*?(?=\<br\>) (?<=ADDRESS\:\<\/strong\>\ ).*?(?=\<br\>)
  15. For a little clarification. The data your trying extract is: "button" => "Button Translations", "date" => "Date & Time Translations", And your saying there could be more rows than just two.Are the rowing your trying to extract the same format as your example?
  16. Bill

    Pause

    If I pause a script how is it restarted?
×
×
  • Create New...