Jump to content
UBot Underground

Jpizzo

Fellow UBotter
  • Content Count

    27
  • Joined

  • Last visited

Posts posted by Jpizzo

  1. ok, here's an option....

     

    Say your list has 50 lines in it...

     

    1- joe miller

    2- jan jones

    3- jon doe

    4-etc..

     

    Create a var that has "<a href="http://somelink.com">

    Create a var that has "</a>

     

    Create a table..

     

    Col1= var1

    col2=list item

    col3=var2

     

    Loop so that for each list instance there is also a var 1 & 2 instance.

     

    End result - you have a table that has everything you need.... Save that table to an .html file, and there you go... html in place and working in your html page.

     

    Technically, could I make just a table with one column and type out the html and variables in that single column?

  2. This has two parts.

     

    I have a list of zip codes I need to put into html files then later I'll put them on the web. Why does my list get chopped up? I'll provide a side by side example. Yes before you ask, I save as comma delimited. I am going to upload a screenshot so you can see. 

     

    Second - I want to use those zip codes and cities to plug into an html file I am going to create. What I have is a lot of cities to plug and it would take forever. No I don't want to use a database since my boss wants the files individually done. I dont see anything on ubot that can take that variable data and type it into a file then finally save it. 

     

    Any suggestions?

     

     

    post-9165-0-82215100-1419478695_thumb.png

  3. http://posting.albany.backpage.com/online/classifieds/PostAdPPI.html/alb/albany.backpage.com/?u=alb&serverName=albany.backpage.com&category=5416&section=4374

     

    Guys when I make a script to navigate to each of the pages I have which is over 400 of them, I want to post to each biz op page for an actual job that I am offering for sales reps. Anyway I go to the page that you see above and now have to scrape each one and pick them each in a new navigation. Blah blah I can't scrape the href's and it's got me going crazy here is the code:

     

    loop($list total(%urls)) {
        navigate($list item(%urls,#number),"Wait")
        click(<value="Post Ad">,"Left Click","No")
        wait for browser event("Everything Loaded","")
        wait(5)
        click(<data-name="services">,"Left Click","No")
        wait(5)
        click(<data-category=5416>,"Left Click","No")
        wait(5)
        add list to list(%chooselocation,$scrape attribute(<href=w"/online/classifieds/*;section=4374&category=5416">,"href"),"Delete","Global")
        increment(#number)

     

    in the add list to list, there doesn't seem to be anything special about the url other than the section and category. I tried using wildcards but they dont work at all for me on this and when I try to use regular expressions they dont work because I dont know enough about them. What am i doing wrong?

     

    I need the hrefs for each location at the above link but I am doing this for a specific number of states. I need tips on what to do. I have watched videos on youtube and havent found anything that has helped. :( 

     

     

  4. I have a list with 11300 different cities and I have another list of URL's with 485. I want to trim down my list of 485 urls because they have the city included in the url itself. How can i make a list compare against the other list and eliminate all of the unwanted urls?

     

    I havent even started working on this but wanted more of some ideas on next step. 

  5. Guys,

     

    It's been a while ( a few years ) since I have used UBOT. I am trying to use it to jump on backpage.com and scraping the United States only hrefs. 

     

    I am "navigating" "adding list to list with scrape element and the element I'm using is class="united-states geoBlock""

    I am trying to grab all the hrefs with-in that block but it grabs nothing. I can grab all the hrefs off the page but that does me no good. Any ideas on what I'm doing wrong?

     

    I am adding a screenshot to give you an idea.....

     

     

    Please Help me get back up to speed.......

    post-9165-0-89998500-1418787446_thumb.png

  6. Guys,

     

    It's been a while ( a few years ) since I have used UBOT. I am trying to use it to jump on backpage.com and scraping the United States only hrefs. 

     

    I am "navigating" "adding list to list with scrape element and the element I'm using is class="united-states geoBlock""

    I am trying to grab all the hrefs with-in that block but it grabs nothing. I can grab all the hrefs off the page but that does me no good. Any ideas on what I'm doing wrong?

     

    I am adding a screenshot to give you an idea.....

     

     

    Please Help me get back up to speed.......

  7. Hey all again. I scrape a yellowpages web site gathering addresses and phone numbers but the bit won't scrape the last page because I run the add list to list command inside of a loop while statement and the loop while looks for the next tag. When it gets to the last page it fails to scrape it. I somehow remember a trick was said about how it could be scraped but I can't find it

  8. Ok this time I am trying to add list data by scraping it from yellowpages.com. 

     

    I do all the usual stuff to navigate and search my terms then I scrape the data and here is where the problem comes. I run the add list to table as column inside of a loop I set my row and set my column both to 0 then scrape the data finally navigate to the next page. The scraped data gets written over because I'm guessing the row goes back to 0. How do I fix this and if on page 1 it scrapes 20 addresses and phone numbers then page 2 it will continue to the list and not rewrite my first 20 rows?

     

    Thanks I love you guys for helping me!!!!!

  9. Hey guys,

     

    I've been using ubot for over a month and can scrape data just fine but I want to do more.

     

    I want to use ubot to create thousands of websites on a dummy domain and even have ubot make subdomains. Giving the appearance that my site is getting lots of link traffic. Any pointers where to start looking or feedback of how this can be done?

     

    I don't want to use wordpress, I just want to upload a single html page with the links then submit to google, bing, and yahoo and finally ping the site. I haven't seen anything about doing this in action just saw it apparently can be done. 

     

    :) 

  10. I posted this before but I made a bot to go to facebook and search for a word thus giving me a list of pages. I want to scrape those pages into a list and capture each one. My code is:

     

     

    type text(<aria-label="search">, #search, "Standard")

    clear list(%pages)

    add list to list(%pages, $scrape sttribute(<class="text">, fullhref"), "Delete", "Global")

     

    but when it scrapes the data it only gives me one link and not all the links. This is all happening within a javascript window, I presume. Any help will be much appreciated! I am including screen shots to show you what I mean. 

     

    Yes I know this post is identical to my last one but I need help badly. 

    post-9165-0-27118400-1365811885_thumb.png

    post-9165-0-21277100-1365811889_thumb.png

    post-9165-0-27992800-1365811893_thumb.png

    post-9165-0-98478800-1365811896_thumb.png

  11. Ok this is what I have and let me know if I am doing this wrong. 

     

    I go to facebook, have a status box with an if statement that runs if I have a UI checkbox true, then I search for a term. My code for the scraping of the URLS is here:

     

    type text(<aria-label="search">, #search, "Standard")

    clear list(%pages)

    add list to list(%pages, $scrape sttribute(<class="text">, fullhref"), "Delete", "Global")

     

    This is an updated image explaining it the best I can. 

     

    post-9165-0-76993500-1365716404_thumb.png

  12. Hi guys, 

     

    I'm trying to make a bot to click on the pages in facebook and I have included some screen shots to give an understanding. The first thing is to have ubot search for people, places and things in the top search query box, the search is going to be based on a UI text box with variable that a user can select a keyword for. After the search is done I want ubot to click through each one and making a post if it is possible and if not move to the next one (an if else statement?) My screen shots shows what I'm talking about. 

     

    Edit: I forgot to add that I want to do this to multiple pages in a loop, I currently can do it with only one but I had to set a navigate to a specific page and make a post. 

    post-9165-0-02986000-1365702663_thumb.png

    post-9165-0-12966500-1365702667_thumb.png

    post-9165-0-16143200-1365702671_thumb.png

  13. Okay here is the deal guys, I have a bot that is going to go into a forum and automatically post a subject, body, and tags. Here is where the problem comes, the bot logs in, starts a new post, adds the subject, and then the body ( which is contained in an iframe window, much like this writing area, they are exactly the same ) and then it posts the body also into the tags area. Is there any way to contain just the body element and allow the #body variable to post only within that? Or the root question, how can I select a block of text and then delete it thus allowing me to add the tags after? 

     

    Thanks for your help. 

×
×
  • Create New...