Jump to content
UBot Underground

botoballs

Fellow UBotter
  • Content Count

    152
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by botoballs

  1. I've tried many scrapping attribute that I can figure out but no success.

    Does anyone  know the attributes using wildcard to scrape post?

    Sometimes fb would show "Just Now" or 2 min or 1hr ago for the link to the post page. 

    I'm figuring out how to scrape these links and each time I do it results show blank.

    Any suggestions anyone?

     

  2. You would use the iPhone user agent

     

    Type user agent in the search bar in ubot... then look for iPhone.

     

    This will make Facebook think you are visiting their site from a mobile device. The layout will be different and easier to post text into.

     

    I'm not at my pc now but in my ubot my browser will look different right? I have not tried user agent before but will look into this.

  3. Hi

     I'm trying to do an advance browser with functions to add and delete url from the address bar (please see screenshot). Sort of like a bookmark feature.

    If the ubot address bar shows the url I would click on add button and it will add it to the list. 

    If I click on the url address within the list I can delete it from the list.

    If I click on the url address within the list I can navigate to that url.

    Could Ubot Pro do this?

    If so, could anyone assist me on what to use?

     

    Thanks

    post-12668-0-17523600-1403819570_thumb.jpg

  4. Hi

     My csv or txt file has this username,password,webpage,title with different text on each line.

    How could I use a csv file to do each action?

    Here is what I got so far but could not find the parameters:

     

    ui open file("Choose File", #choosefile)
    ui button("Start") {
        loop(5) {
            navigate("webpage", "Wait")
            type text(<username field>, "username", "Standard")
            type text(<password field>, "password", "Standard")
            type text(<title textarea>, "title", "Standard")
            click(<value="Submit">, "Left Click", "No")
        }
    }
     
    Any help would be good. :)
     
  5. Hi

     I have been spending many hours and can't seem to figure out whey it's not working. Hoping that someone here can help me out with the code.

    This process is to add link into facebook fanpage, change the title, change the description of the link and add some post into the top message box.

    Below is the code and if anyone can assist me it would be appreciated.

    There is no post button because I don't want to post something that does not work and delete them later (too much time taken).

    The txt files is also below.

     

     

     

    ui button("Facebook") {
    }
    ui open file("Fanpage URLs", #urls)
    ui open file("Links", #links)
    ui open file("Title", #linktitle)
    ui open file("Description", #linkdescription)
    ui open file("Write something on this Page", #writesomethingonthispage)
    ui drop down("Seconds In Between URLs", "60,70,80,100,120", #beforego)
    ui button("Start Posting") {
        add list to list(%linkdescription, $list from file(#linkdescription), "Delete", "Global")
        add list to list(%linktitle, $list from file(#linktitle), "Delete", "Global")
        add list to list(%postd, $list from file(#links), "Delete", "Global")
        add list to list(%urls, $list from file(#urls), "Don\'t Delete", "Global")
        add list to list(%whatshappening, $list from file(#writesomethingonthispage), "Delete", "Global")
        loop($list total(%urls)) {
            navigate($next list item(%urls), "Wait")
            wait for element(<name="xhpc_message">, "", "Appear")
            wait(2)
            type text(<name="xhpc_message">, $next list item(%postd), "Standard")
            click(<class="UIShareStage_InlineEdit inline_edit">, "Left Click", "No")
            wait(1)
            type text(<class="inputtext inline_edit">, #linkdescription, "Standard")
            wait(1)
            click($element offset(<class="inline_edit">, 0), "Left Click", "No")
            wait(1)
            change attribute(<class="inputtext inline_edit">, "value", #linktitle)
            wait(1)
            click(<class="UIThumbPagerControl_Button UIThumbPagerControl_Button_Left">, "Left Click", "No")
            change attribute(<name="xhpc_message_text">, "value", #writesomethingonthispage)
            wait(#beforego)
        }
        stop script
    }
     

     

    postdescriptions.txt

    urls.txt

    whatishappening.txt

    post-12668-0-15599400-1401676167_thumb.jpg

  6. For this tutorial.

    I can't seem to get it working. It only scrape the first but not all in the page.

    Is this for older version?

    set(#a, $scrape attribute(<onmousedown="return rwt(this,'','','','4','AFQjCNH5gzZrcmHhYcFVQdwElbpRYpf9-g','','0CFUQFjAD','','',event)">, "href"), "Global")
    save to file("C:\\Users\\ubot\\Desktop\\Ubot\\savedscrape.txt", #a)
    
    
  7. Hi

     I was using the recording and it does not seem to delete the text in a box on a webpage after pressing the delete button. Is there a way around this?

    Example there is a webpage when I click on a message it highlights it for me to enter something. What I want is to remove the message that is already there.

×
×
  • Create New...