Jump to content
UBot Underground

uRobot

Fellow UBotter
  • Content Count

    34
  • Joined

  • Last visited

Posts posted by uRobot

  1. Sorry, I have not used urobot for around 5months now... 

     

    I am just going back because my old .exe bot is no longer working due to this exbrowser problem..

     

    I just opened my ubot again after 5months... 

     

    can you help me how do I make it run the portable chrome?

     

    I have the portable chrome on a windows server 2012 r2...

     

    and my ubot is installed in a windows 10... (no portable chrome)

  2. Hi pash,

     

    sorry but I cannot post my full code.

     

    but I can emphasize it a little bit more.

     

    I have created a small script that will type (exbrowser) into a website... from a UI from file... (example: code.txt)

     

    and like I said... everything is okay until... ubot does not read this: 

     

    <a href='/{$account data("Username")}.html'> 

     

    basically this is supposed to be:

     

    www.mydomain.com/username.html

     

    that is generated via UBOT...

     

    but instead it parses as

     

    www.mydomain.com/{$account data("Username")}.html

     

     

    and this:

     

    <a href='/{$account data("Username")}.html'>  is in my code.txt that I load via UI and set as a variable (#code)

  3. Hello,

     

    I am trying to paste an html code into a text area... (around 2000+ lines)...

     

    at first I tried copy to clipboard and send special keys (CTRL+V) using exbrowser... and it work just fine... (FOR SINGLE THREAD)...

     

    but I started having problem with MULTI-THREAD... (is it possible to do local on copy to clipboard????)

     

    the problem is... that each thread is supposed to have a UNIQUE HTML CODE...

     

    but since copy to clipboard is pretty much pressing CTRL+C to copy... and CTRL+V to paste...

     

    one or two threads gets a SIMILAR HTML CODE from time to time... especially if I increase the thread number further...

     

     

     

    I also tried TYPE TEXT...

     

    this one is okay with single thread and multi thread...

     

    however... even if I set a "ZERO" delay... the script takes a very sweet time trying to transfer an HTML CODE from variable #html into a text area... (it takes around 30 to 120seconds)...

     

    pretty much trying to type each line... one by one...

     

    What do you guys suggest I do?

     

    is there a command or function that I am missing?

     

    Is there a different approach that I should take?

  4. Hello,

     

    I am using exbrowser + xpath builder pro... and I can't seem to get the right expression to cleartextbox.

     

    so I am wondering if the textbox area is on an iframe (went to check the source code) and it seems like it is on an iframe.

     

    I saw that exbrowser have a command switch to frame/iframe, but I could not find a video or documentation on how to use it.

     

    I had some help from TJ, to find all iframes of the page so I found 6 iframes... and i tried all of them:

     

    x:(//iframe)[1] 

    x:(//iframe)[2]

    and etc...

     

    let's just say i switched to the correct iframe..

     

    how do I grab/create the correct expression that will CLEAR TEXT BOX on that iframe?

     

    I am not even sure how to find an element inside that iframe...

  5. Hey Nick,

     

    I am not copy/pasting just yet... I am not able to create a correct xpath of a text box area that I wanted to clear... (been trying for a couple of hours now)... it just won't clear the box... so I am trying a different approach.

     

    clicking on the box and selecting all (ctrl+a) and {DEL} to completely clear the box and clicking on the box again and start typing from a variable.

  6. hello guys.. i am using exbrowser and launching chrome...

     

    how do I close this leave this site dialog? http://image.prntscr.com/image/44a43f9e0b3445a7abc69c4bbba5c627.png

     

    i have this and it does not seem to work?

     

        if($plugin function("ExBrowser.dll", "$ExBrowser Element Exist", "x://a[contains(text(), \\\'leave this site\\\')]")) {
            then {
                plugin command("ExBrowser.dll", "ExBrowser Confirm Dialog")
            }
            else {
            }
        
    
     
    i am also using this but the popups still appears
     
    plugin command("ExBrowser.dll", "ExBrowser Launcher", "Chrome", "", $plugin function("ExBrowser.dll", "$ExBrowser Generic Chrome Parameter", "--disable-notifications"))

     

  7. I got this:

            if($comparison($plugin function("ExBrowser.dll", "$ExBrowser Element Exist", "x://div[contains(text(),\"successfully\")]"),"!= Does not equal",$true)) {
                then {
                }
                else {
                }
            }
            wait($rand(1,3))
    

    Is there a command/function to jump into a certain node? if the text "successfully" does not come up?

  8. @op where you able to find a solution?

     

    @alcr what do you mean by preferences?

     

    @all I am well aware this is a 6year old thread... and I am having the same problem... that is why I search via google and via ubotstudio to solve my own problem...

     

    this thread is all i found...

     

    can you guys suggest how to deal with this?

     

    I am thinking of - if element does not appear jump/go to a certain node... but I have no idea how to do this...

  9. I really doubt that email address rate right now is $0.50 per email...

     

    I can get 1000 emails for $3 (mail.ru)

     

    and your non-pva gmx are $0.025 per email or $25 for 1000 emails.

     

    here's a screenshot... the price is per 1000 emails

     

    http://image.prntscr.com/image/6aa058c2b29a47f1b1ddf31e4a69d3ca.png

     

     

     

    @op I do not mean to bust your bot... but I also do not want the consumer to be lied to...

     

    Do not get me wrong... but your bot looks amazing and very promising and is ready to go and create emails... but the price part is a bit misleading...

     

    the bot creates "NON-PVA GMX"... and you are telling buyers that they cost $0.50 per email which is not true...

     

    on the screenshot above... the cost for NON PVA is $0.025 per email or $25 for 1000 emails

     

    again... I do not mean to start a fight or cause trouble...

     

    I am just saying the facts...

     

    Good luck on your sales!

    • Like 1
  10. Hello,

     

    Sorry to be a pain in the $#%... but I wanted to ask a new tip/advice again...

     

    how do you manipulate a variable?

     

    for example:

     

    $list total

    > #total

     

    output 101

     

     

     

    basically... the variable #total gives out 101... and I only wanted it to be 100?

     

    i would have used the command set total 0 to get a total of 100... but I cannot get exbrowser to click the first button if I set the variable to 0...

     

    I have to set it to 1... but then again this makes the #total to 101 and not 100...

     

    I hope my explanation makes sense...

     

    thanks a lot in advance!

  11. brutal, i thought there's a way to lock/hide a source code? I saw it as a plugin somewhere in ubotstudio...

     

    anyway... I honestly just lost my .ubot file... if you can check my profile I am entirely new... and I started created my ubot bot... I actually had this bot, but as a WinAutomation PRO... and it does not support multi-threading and proxies... (there's a work around but I think the ubot support for proxy and multi thread is way better... that is why I AM HERE trying to learn ubot)...

     

    Also, this forum does not allow unlicensed users.... it took me around 3days to finally get access here... had to confirm my purchase/email address and etc...

     

    so yes, I am a legitimate ubot licensed user and I am trying to learn ubot...

     

    my ubot bot was around 70% finish... or should I say done so I compiled it the other day... and today I tried to do some optimization... and did not finish and opened another .ubot file that I downloaded (saw it from the forum)...

     

    titled: Random Name from List.ubot 

     

    and went away from my laptop for just a couple of minutes and battery died...

     

    when I came back and plugged my laptop... the ubot only had Random Name from List.ubot to retrieve or open....

     

    my freshly created bot is nowhere to be found...

     

    here's a screenshot of my ubot folder:

    http://image.prntscr.com/image/5e5874f269a74aa89830fe046c787ad1.png

     

    that file named "new.ubot"

     

    was SUPPOSED to be the bot I made... but it is not anymore... that file shows in bytes...

     

    my bot was around 16kb or something... and that took me around 4days to build... and it is GONE... except for the .exe (that I compiled)

     

    so yeah that's my story...

     

    and I did not mean to hack anybody's program or cause problems to anybody...

     

    I really thought that .exe can be read easily... and that is why there are a lot of licensing or lock or hide or protection to the source code...

     

    I also sent this same question to support... 

     

    but your answer tells me that I have to rebuild my bot...

  12. your clearing the list each time right????

     

    I do not have the clear command on each run yet... but before I start running the entire script... I cleared the values of all variables... manually..

     

     

     

    without knowing the page you are working on.

    my first move would be change the don't delete command in your add list to list to delete.

    just to make sure you aren't duplicating things

     

    I had to do don't delete... because the "MORE OPTIONS" is a duplicate element...

     

    here's the screenshot of the button:

    http://image.prntscr.com/image/ee6653607e384af3a59b162ca3c2a739.png

     

    if I change the don't delete to delete.. it will only return 1 element instead of 32 elements...

  13. add list to list(%totalElements,$plugin function("ExBrowser.dll", "$ExBrowser Scrape List Elements Attribute", "x://button[@title=\"More options\"]", ""),"Don\'t Delete","Global")
    alert($list total(%totalElements))

     

    when I manually "run node" on the first line... it comes up with the correct %totalElements (32 total)

     

    but when I click "RUN" on the entire script... the alert comes up with 200+ %totalElements

     

    I also have tested the xpath and I come up with 32 totalElements as well on XPATH PRO BUILDER as well...

     

    it just mess up when I start the entire thing...

     

     

×
×
  • Create New...