Jump to content
UBot Underground

alexinchinatown

Fellow UBotter
  • Content Count

    45
  • Joined

  • Last visited

Posts posted by alexinchinatown

  1. I'm trying to scrape Twitter followers. But the popular twitter profiles have over 1 million followers, so I need to keep on scrolling down for a very very long time to get all the followers.

     

    I want to...

    1. Change the CSS of the page so the follower box is smaller, so I can scroll down faster

    2. Progressively delete followers as I scroll to keep the page more light weight.

     

    Need someone to do screen share with me to show me how to do it.

    How much per hour?

    Show me experience you've had with this.

    Your email.

  2. So I have this data:

    nr@id,alex@gmail.com,abc@abc.gif,scrappy@2x-5ca495c2.png,nr@wrapp,info@rexgc.com,2abc@abc.jpg,info@CarolineLabiner.com,104271145@N04,raster@2x.png,nr@wrapped

     

    Is there one regex code that can remove all the non-email from the data?

    These are the non-emails: nr@id, abc@agc.gif, scrappy@2x-5ca495c2.png, nr@wrapp,2abc@abc.jpg,104271145@N04,raster@2x.png,nr@wrapped

     

    Only alex@gmail.com,info@rexgc.com,info@carolinelabiner.com are actual emails I want to keep.

     

    Thanks in advance.

  3. Hi,

     

    I've actually already spent a lot of time into building this software for my own use. Please look at image below. I can modify it to make it fit for what you're trying to do. I even create my own PVAs and have proxy solutions. HideMyAss is sometimes not good for CL posting, depending on the category you choose.

     

    Please let me know:

    1. What categories are you posting in
    2. What cities
    3. Frequency of postings
    4. Your budget

    Private message me.

     

    http://i.imgur.com/KiI7EcZ.jpg

    • Like 2
  4. I see that I can set user agent to set what browser I'm using. Is there anyway to do that to set my operating system also?

     

    Is there anyway to save cookies and then loading it so that I don't have to login to certain websites? I think there's a way to do it using sockets, but is there a way to do it without sockets?

     

    Thanks in advance.

     

     

  5. I have several gmail accounts. I want to create a bot that goes into each email, check for new emails, and send replies.

     

     

    How it works:

    After ubot connects to that email via POP3, it creates a table out of those emails to collect data such as sender's email, time, subject, body, etc. Then it uses that data to send replies.

     

    Deleting emails accessed with POP:

    In gmail settings, I set it up so that when messages are accessed with POP, it deletes gmail's copy. That way, tomorrow, when I run ubot again, it doesn't check and reply to the same emails from the day before.

     

    Problem:

    The problem is, when ubot access the email with POP, it doesn't delete gmail's copy. I'm not sure why. When I tried to access that same email using Outlook with POP settings, it does does delete gmail's copy.

     

     

    How do I get gmail to know that ubot has accessed those emails with POP so that gmail can delete those emails?

    Thanks in advance.

  6. I think Duane is right, and that will be the simplest way.

     

    If you really want to do that on results page, you could use a check like this:

    set(#OFFSET, 0, "Global")
    set(#NAME, "Grub Restaurant", "Global")
    loop(10) {
        if($contains($scrape attribute($element parent($element parent($element parent($element parent($element offset(<class="get-dir">, #OFFSET))))), "outerhtml"), ">{#NAME}</a>")) {
            then {
                click($element offset(<class="get-dir">, #OFFSET), "Left Click", "No")
                wait for element(<innertext="Get Directions to here from:Close">, "", "Appear")
            }
            else {
                increment(#OFFSET)
            }
        }
    }
    

    This will check first 10 results to see if any of them contains the name you are looking for.

     

    Hi UbotDev.com, thanks for that code. I see that it probably can do the job.

     

    But I wonder if there is a simpler way.

  7. Why can't you click on the restaurant link and then click on get directions from there? One way or another it seems you are going to have to zero in on a specific restaurant...

     

    Hi Duane, thanks for answering. In this scenario, I can just click on the restaurant link. But I often run into cases where there is no restaurant link. I just want to learn how to do it without the link for now.

  8. I'm trying to click on elements doesn't have href, and I'm having problems.

     

    Go to this link: http://tinyurl.com/ppnng4c

     

    You'll see that it is a Yahoo Local page with a listing of restaurants. Under each restaurant listing, there is a link called "Directions". I want to click on "Directions" only these 2 restaurant listings "Grub Restaurant" and "Restaurant 2117".

     

    I know in Ubot, there is a "Click" command, but I can't use it's offset selector because the listing maybe be at a different location everytime. I can't just use the element selector with wildcards because, then it will click "Directions" with every restaurant listing. I have to find the resturant listing by the name of the restaurant first, then click that "Directions" link somehow. I was thinking of finding the restaurant listing by name first, then using multiple child selectors until I get to "Directions" link, but I can't get it to work.

     

    Please help. Thanks in advance.

  9. Hi, I tried that, and it didn't work for me.

     

    I've changed proxy, and now I want don't wan to use proxy. I want to use my original IP. So I set proxy credentials and left username and password blank, then I change proxy to this: 127.0.0.1:localhost

     

    This is the error it gave me...

     

    Script Error
    
    Error: Input string was not in a correct format
  10. Trying to build a bot to join groups on Meetup.com more faster.

     

    Go to this site: http://tinyurl.com/3ruc4tt

    Scroll down, and you'll see a list of groups.

    I'll click the first group to go to their profile.

    Then click "join" to join the group.

    Then go back and do this for the next group.

    Then keep doing this for all groups on that page.

     

    I want to build a bot that can do this,

    but cant seem to figure out how to get the bot to choose the next group on the list.

    What command do i give it so that i knows to choose and click on the next group?

     

    Thanks.

×
×
  • Create New...