Jump to content
UBot Underground

JohannesT

Members
  • Content Count

    20
  • Joined

  • Last visited

Posts posted by JohannesT

  1. i submitted a ticket regarding this, and they said it would be fixed with the next update..not sure if they meant the update that just came out couple of days ago, i havn't had a chance to test on the site i was on. Definitely though have a look at the examples of how to allow a popup, and put a wait in there while your testing. some sites you can just change your user agent to mobile to avoid it altogether.

     

    Thank you for the reply, the_way. 

     

    Could I ask what was your ticket specifically about?

     

    The funny thing is that it's just even when navigating within the browser so the allow popup and user agents aren't run and are at default which should enable it to load these popups. 

    I guess got to try the new version in that case then. 

  2. So the deal is that https://members.myactivesg.com has an pop-up when checking out where I can choose if to got to cart or to continue. The thing is that in UBot browser this isn't displayed and the web site takes straight to the check out. I'm talking right now about just navigating with the UBot built-in browser and not running a bot. 

     

    Went to http://www.popuptest.com/popuptest3.html and the pop-ups display normally there. 

     

    More exactly when choosing time slots in booking, for example here: https://members.myactivesg.com/facilities/view/activity/207/venue/175?time_from=1439308800 I.e. choose 5PM time slot and in normal browsers it gives a popup if to go to cart or to continue. In UBot goes straight to the cart. 

     

    Anybody has any clues or advice? 

     

    Oh, and I'll buy you a beer if you'll help me sort this out  :)

  3. Hey!

     

    So I have this output from scrape - 

     

    From:
    Lisa Misseri (LisaMi@timothybuu.e4ward.com)
    To:
     
    Note:
     
     
     
    Pura d'or Hair Loss Prevention Premium Organic Shampoo, Brown and Blue, 16 Fluid Ounce
      (1,718)
    $37.00 $20.99
    Send me a copy of this e-mail
     
    Your sharing settings
     
     
    And I'd need it to pick line 2 (Lisa Misseri (LisaMi@timothybuu.e4ward.com)) and line 9 (Pura d'or Hair Loss Prevention Premium Organic Shampoo, Brown and Blue, 16 Fluid Ounce). It would be easy if the output would be always the same but they are dynamic so anyway to pick them by the line number? 
     
    Thanks! :)
  4. Quick Example:

     

    clear list(%test1)

    clear list(%test2)

    add list to list(%test1$list from text("1

    2

    3

    4

    5"$new line), "Don\'t Delete""Global")

    set(#counter, 0, "Global")

    loop($list total(%test1)) {

        if($comparison($list item(%test1#counter), "=", 4)) {

            then {

                add item to list(%test2"4xxxx""Don\'t Delete""Global")

            }

            else {

                add item to list(%test2$list item(%test1#counter), "Don\'t Delete""Global")

            }

        }

        increment(#counter)

    }

    alert($text from list(%test2$new line))

     

    Thanks mate, that worked wonderfully! 

  5. To clariy:

     

    1.You generate a list from user input.

    2. Now you want to change certain list items.

     

     

    Question:

    How do you know which one you have to change? Do you know the position or do you have to search for it?

    Will there be only 1 match or multiple matches?

     

    Can you describe the usecase a little bit. 

    The user enters stuff. You create a list. Why do you want to change some entries? And which entries do you want to change? And how do you want to change them?

     

    Dan

     

    1 & 2 are correct. 

     

    How do you know which one you have to change? Do you know the position or do you have to search for it? - There are pretty much only 2 things that the user inserts - T & T and Vitals International . If the list item is T & T then it should change to certain URL and if the list item is Vitals International then it should change to another certain URL. Pretty much the user could also write the URL's to the input box, but that's not really nice. 

     

    Will there be only 1 match or multiple matches? - As I described before there will be only 1 match. 

     

    Hope that clarifies a little bit. 

     

    And thanks guys for all the input! :)

  6. Correction

     

    Add list to list

    %list

    Then put one of those two commands in second box

     

    I don't really get it - could You please elaborate? 

     

    arunner26 - thanks, that's a great way. But unfortunately the list comes from a user input so it's kinda hard to predict what list item needs to be what. 

  7. Glad to hear you are sorted.

    Just curious, did you try my method and did it work ?

     

    Yeah, that's pretty much how it got solved also. ;) Didn't saw the what are you upto to question before, but I'm making a bot that would automatically buy stuff from Amazon. I'd gladly add You to my friends list, but can't seem to find a button to do so. 

  8. Hey!

     

    So I am having a little bit hard time with my bot right now. Pretty much I'd need the bot to take an username from an variable and buy an item from that user in Amazon. 

     

    E.g. I have this product - http://www.amazon.com/gp/offer-listing/B001OVQSJG/ref=olp_page_1 and let's say I'd need to pick speeddm_99 as seller and click on the Buy with 1-click. 

     

    The thing is that all of the 1-click buy buttons have the same code so that doesn't really help. They do have offsets so I could use them, but how could I find what offsets corresponds to what username? Here is where I would need Your help. 

     

    Thanks and best of luck,

    Johannes

  9. I think there are three important variables you need to consider:

     

    The price (with shipping)

    The rating

    The number of people who rated it

     

    You can create a bot which determines several things such as:

     

    If the rating is below X% then do not buy

    If the item has less than X ratings then do not buy

    if the item costs X% more than the rest then do not buy

     

    You can use filters like that to start eliminating the bad items right away, that way you know it will only buy if it meets some basic requirements.

     

    After that you can compare the rest by making a formula that takes all the data into consideration and creates a score and the best score wins. This is just one of the ways to do it at least.

     

    Hey!
     
    Thanks for the thorough answer but pretty much I only need to watch is the usernames and if the username matches then buy the product from him with 1-click buy. E.g. let's say I need to pick Yasmin Beauty Supply and Buy with 1-click. 
     
    But I just can't seem to find an attribute associated with the 1-click buy as somehow they are all the same. Only thing that seems to change is the Offset(runs from 0-9 as there are 10 sellers each page). But then when using offset how I am going to find what number is a seller in the page? Thanks!
×
×
  • Create New...