Jump to content
UBot Underground

allcapone1912

Fellow UBotter
  • Content Count

    146
  • Joined

  • Last visited

Everything posted by allcapone1912

  1. your regex its work perfect thanks for your time
  2. thanks for you help i've tried your regex but still the same problem for example: navigate("http://artisticnailsandbeauty.co.uk/contact.htm","Wait") add list to list(%emails,$find regular expression($document text,"[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\\.[a-zA-Z0-9-.]+"),"Delete","Global") final email should be "271@artisticnailsandbeauty.co.uk" but script get me "271@artisticnailsandbeauty.co"
  3. hi, i use this regex to find email on pages [\\w\\-][\\w\\-\\.]+@[\\w\\-][\\w\\-\\.]+[a-zA-Z]\{1,4\} and its work fine for most of email but when there are email with termination co.uk or co.nz its doesnt get all email get only emai@co but should be email@co.uk Can someone give an idea how to edit this regex to get all possible emails?
  4. hi, I get stuck with my scripts because i get an unusual error(after 1-2 min of script running) Its first time i see this error and i dont know the problem is in code or in something else ui stat monitor("Found: ",$list total(%url)) ui stat monitor("Cycle",#increment) clear list(%main pages) clear list(%url) add list to list(%main pages,$list from file("C:\\Users\\admin\\Desktop\\Main Pages.txt"),"Delete","Global") set(#increment,0,"Global") ui text box("Threads",#threads) ui text box("Cycles",#cycles) ui text box("Theadcount",#theadcount) ui text box("Cyclecount",#cyclecount) set(#theadcount
  5. hi, have a problem with multi threads i have a script that scrape emails from url but problem is that currently all urls open in new browser thread { in new browser { navigate($next list item(%pages),"Wait") wait(1) add list to list(%emails,$find regular expression($document text,"(\\w+(\\s|)@(\\s|)[a-zA-Z_]+?\\.[a-zA-Z]\{2,4\})"),"Delete","Global") close page } } but sometime websites have a lot of second urls and my script just stop I want to run only 5 treads until all list is done
  6. thanks for your time,you help me you really wrote a good code
  7. hi, need to separate multiple words by upper letters for example: ThoughtsOfNothing as result need to get: Thoughts Of Nothing
  8. thanks for your help, i just never used "Change attribute" function so, sorry for any inconvenience
  9. hi, need some help here i am trying to make an AOL Email creator my problem: i type username and if username is not valid i want to delete it and type new one(without navigate to a new page) navigate("https://i.aol.com/reg/signup","Wait") wait(5) type text(<username field>,"Username_Test1","Standard") so,when's again if "Username_Test1" is not valid delete it and type type text(<username field>,"Username_Test2","Standard")
  10. hi, need some help i am trying to make a simple Gmail Email Creator but have some problem with dropdown meniu Ive tried to use change dropdown funtion but without any success Curently i use this function but its not working each time navigate("https://accounts.google.com/SignUp","Wait") wait(5) click($element offset(<class="goog-inline-block goog-flat-menu-button-dropdown">,0),"Left Click","No") wait(2) click(<innertext=$account data("Birth Month Word")>,"Left Click","Yes") click(<innertext=$account data("Birth Month Word")>,"Left Click","Yes") Can someone give an idea
  11. http://s11.postimg.org/tbone9chv/Untitled.png
  12. i just figure out why this warning appear, in new version of ubot 5.7.1 function "Clear all data" just dont exist and each time i run an old script that contain this function its popup a warning alert
  13. hi, need some help each time i run script that contain "Clear all data" appear Subscription Waring Alert,i dont own to subscribe now so, how to get rid of "Subsciption Warning"?
  14. my script work with finding <class="composeicon"> i assume you can not find it because of useragent,try to set an other useragent,not default also,you could find element by taking a picture,but in this cause you should use the same useragent(with random useragent not always will find image)
  15. click(<innerhtml="Yahoo Mail">,"Left Click","No") wait(2) click($element offset(<class="composeicon">,0),"Left Click","No") to click "Compose" and send txt email its not a problem,can be easy done but to send html email - i dont know how
  16. Thank you for your help,your reply really help me
  17. thank for your reply but can not use foxmail i want to send only with ubot(without any additional soft) if its possible i need it only with ubot because i have to integrate it with sql and other function
  18. hi,heed some help i am trying to scrape home year from zillow navigate("http://www.zillow.com/homes/3804 Emerson Dr%0960176_rb/","Wait") wait for element(<class="zsg-content-header addr">,"","Appear") wait(3) add list to list(%home year,$scrape attribute(<innertext=r"Built in ">,"innertext"),"Delete","Global") ive tried all combination with scrape attribute with no results so i think it can be done only with regex but i don't know regex very well,i just start to learn it
  19. without captcha??? Excellent,neither thought it is possible i would to buy it,how to do with your discount?
  20. i dont see any reply to my post and i am little confuse, no one saw my post or this kind of script can not be done via uBot Studio?
  21. hi,need some help Im trying to send HTML Emails direct from Yahoo WebMail(not SMTP direct from webmail) so,i dont understand how to send html text When i sent html text direct via browser(without Ubot) i open html text in browser,copy the browser contain and paste it to email body but have no idea how to make that with uBot *NOTE: Direct from WebMail,not using SMTP
×
×
  • Create New...