Jump to content
UBot Underground

alexb

Fellow UBotter
  • Content Count

    34
  • Joined

  • Last visited

Community Reputation

2 Neutral

About alexb

  • Rank
    Advanced Member

Profile Information

  • Gender
    Not Telling

System Specs

  • OS
    Windows 8
  • Total Memory
    < 1Gb
  • Framework
    v3.5
  • License
    Professional Edition

Recent Profile Visitors

1956 profile views
  1. Brilliant Guys! It works!! Thank you very much and now a peace with beautifully working code.
  2. Hi Everyone, I'm trying to figure out how to code this, since all else is failing or other methods (like scrape attribute of the >> image) are causing a bot crash. I want to accomplish this with wildcard inserted in href, but UBOT doesn't like the coding: if($contains("<a class="backgroundBasic mrs bas pvs phm" href=w"//abc.com/*_p/" aria-label="Next page">>></a>") { then { click(<aria-label="Next page">,"Left Click","No") Is there a simple way to confirm for the string below is present, before clicking on the link? <a c
  3. HelloInsomnia and UbotBuddy, Thank you both! Very helpful and I now have it working, but still need to learn regex!
  4. Hi, Here is the example page I am scraping: http://www.zillow.com/homedetails/2329-Onyx-Rd-North-Pole-AK-99705/2106119627_zpid/ My code that I am trying to scrape phone number only (I want to append a file without adding the Call in the scrape attritubute): add item to list(%phones,$find regular expression($scrape attribute($element offset(<class="snl phone">,1),"innertext"),"^(\\+\\d\{1,2\}\\s)?\\(?\\d\{3\}\\)?[\\s.-]\\d\{3\}[\\s.-]\\d\{4\}$"),"Delete","Global") In the debugger, I am getting on 0, without any phone number data. Any ideas on how to accomplish this? (I can scrape the
  5. I am using 5.0 and also talking with support about this. I will post when resolved. Also, if any of you know how to code this with variables successfully, please let me know. Thank you.
  6. Yes, path errors will always cause a script to work. However, even when corrected, I am not able to connect to email server using variables. I have yet to see anyone demonstrate that it is possible. And if it is, I would love to know what I am doing wrong in the code to connect using variables rather than having the actual "username" and "password" in quotes to connect. Is UBOT simply not coded to connect to mail server using variables for username and password?
  7. Tried that but didn't fix the problem. But thank you for your effort to help me. I am now ready to submit a challenge to anyone to connect to an email server using variables. I don't think it is possible, but I want to be proven wrong: Here is an example that is not throwing any errors, but does not show email server connection in debugger: add list to list(%email, $list from file("{$special folder("Desktop")}\\test\\username.txt"), "Delete", "Global") add list to list(%password, $list from file("{$special folder("Desktop")}\\test\\password.txt"), "Delete", "Global") set(#email, $list
  8. Hi everyone, I can't seem to get the "connect to mail server" to pull the data to connect from the database file. It DOES work when I enter the actual usernames and passwords for the email accounts, but I need to it pull it from the data file and can't figure out a way to supply it. create table from file("{$special folder("Desktop")}\\Desktop\\accounts.csv", &logins) set(#incrementing, 0, "Global") add list to table as column(&logins, 0, 2, %email) add list to table as column(&logins, 0, 4, %password) connect to mail server("POP3", $table cell(&logins, #incrementing, 2),
  9. Thanks Team_LX but that is already in my code and still experiencing this problem. Certainly this master DB must be much larger than to keep providing the same small group of usernames? Perhaps a bug?
  10. I just started building a bot that uses account data and running into the problem of having the same names, usernames, passwords being repeated over and over. This is not acceptable. How can I overcome this using this engine without programming in my own data? Also, the captcha functions with a pop up window for the services only sometimes. I am very disappointed in this as well. Is there some kind of a tweak to get the caption pop up window to pop out consistently and function? Thank you!
  11. When you click on reply (to a message) there is a very small icon and when clicked it opens the original message. I am attempting to delete it (I want to entirely eliminate the original message. Have tried this and it does not work. change attribute(<outerhtml="<img class=\"ajT\" src=\"images/cleardot.gif\">">, "outerhtml", "") Any ideas on how to get rid of this to have a completely empty field to compose a message? Thank you!
  12. Yes, Element Offset worked like a charm! Much appreciated!
  13. I'll try the element offset to see if this works. Kev, I want to avoid anything with Reviews in the URL. Thanks!
  14. I am trying to scrape profiles, but my scrape is getting "contaminated" with another profile: Example: /profile/user210/ (desired to scrape) /profile/user210/Reviews/ (I want to avoid these) The following code doesn't help me avoid those with Reviews. What might be be doing wrong? Thank you. if($not($contains($url, "Reviews"))) { then { add list to list(%url, $scrape attribute(<href=w"/profile/*/">, "fullhref"), "Delete", "Global")
  15. This is bizarre. I don't have this problem with any other search engine, but when I try to click on any of the SERP results while navigating in a UBOT browser, the links are not clickable and don't respond both manually by computer mouse and via coded commands. Any ideas on what can be done to be able to click on the links?
×
×
  • Create New...