Jump to content
UBot Underground

UPPER

Members
  • Content Count

    25
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by UPPER

  1. 15 hours ago, Seth Turin said:

    This isn't actually a server issue, and I'm not sure how to reproduce the error on my end, but I can provide some information that might help determine the cause of the error.

    UBot Studio controls the external browser using selenium. Selenium uses a locally hosted http server to communicate with the controlled chrome window. 

    For some reason or another, selenium is timing out when it tries to communicate with chrome via its locally hosted http server.

    One thing you can try is turning off all your plugins, and seeing if the error goes away. If it does, you can try to narrow it down to a particular plugin causing the issue.

    If that doesn't help, then, from a clean UBot with no plugins, let me know step by step how to reproduce this error on my end, so I can investigate the issue deeper.

    Thanks!

     

    Hi Seth,

    Turning off all plugins did not work, I reinstalled Ubot from scratch, deleting all Appdata folders and files, and still getting the same error (see attached screenshot) .

    What I noticed and I am not sure if this has a relation with this issue, but this started to happen after updating Chrome browser. and for me this error is occuring when I use the "Navigate" command, the bot visits the URL, then it freezes and the error popup. 

     

    here is the simple script I am trying to run:

     

    navigate("https://google.com","Wait")
    wait(2)
    navigate("https://yahoo.com","Wait")
    wait(2)
    navigate("https://bing.com","Wait")

     

    When I run it, the first URL shows, then bot visit the 2nd URL and stop working throwing the error.

    then, when I try to run the script again, it stopped right away without visiting any URL.

    Desktop-screenshot (3).png

  2. On 9/3/2023 at 3:36 PM, PRO said:

    You can try to include your own UI as HTML, CSS and (some) JS as needed.

    When I really need a custom UI, I typically use Bootstrap Studio (using the oldest Bootstrap and jQuery version inside of it).

    When the UI is built, you need to export it and "inline" all CSS and JS file contents to render it succesfully in "UI HTML Panel".

    Thanks Pro! I ll try that.

  3. Hello,

    As many plugin providers have drop down their products, I am wondering if there is a solution out there to help me design a nice looking UI for my software. I think the Included UI editor is useful, but very basic and cannot be used to make a bot look professional enough.

    Any other suggestions would be very welcome.

  4. On 8/10/2023 at 2:48 PM, Jaro said:

    The following script creates a table, then puts it in a list so that we can loop through the lines. It removes every line that doesn't contain ,yes,yes. Then it simply creates a new table, this time with the updated list.

    clear all data
    create table from text(&Christians,"Name,Religion,Do you sometimes read The Bible?,Is Jesus the only way to Heaven?
    John,Christian,yes,no
    Bob,Christian,no,yes
    Stefanie,Christian,yes,yes
    Alena,Christian,yes,yes
    Suzan,Christian,no,no
    Rebecca,Christian,yes,yes
    Jessica,Christian,yes,yes
    Alex,Christian,yes,yes
    Franco,Christian,no,yes
    Benedict,Christian,yes,no
    Feona,Christian,yes,no
    Samantha,Christian,yes,yes")
    add list to list(%Christians,$list from text(&Christians,$new line),"Delete","Global")
    set list position(%Christians,0)
    loop while($comparison($list position(%Christians),"< Less than",$list total(%Christians))) {
        if($not($contains($next list item(%Christians),",yes,yes"))) {
            then {
                remove from list(%Christians,$subtract($list position(%Christians),1))
                set list position(%Christians,$subtract($list position(%Christians),1))
            }
            else {
            }
        }
    }
    create table from text(&REAL_Christians,"Name,Religion,Do you sometimes read The Bible?,Is Jesus the only way to Heaven?
    {%Christians}")

    Thank you so much Jaro!

  5. On 6/8/2023 at 1:14 PM, Seth Turin said:

    Can you explain more about what you're doing? From the screenshot, it looks like you're installing files, and it can't overwrite files that are already there, probably because they're in use.

    Hi Seth,

    Can you please advise me on how to clear cache and delete cookies when using the Installed Chrome Browser?

    Thank you!

    • Haha 1
  6. Hello UBoters,

    I back into ubot and I see that many plugins sales threads are not updated while payment pages are still up.

    Can you guys please share what Ubot plugins are you are still using with the latest UbotStudio version.

    Any suggestions for usuful pluging will be appriciated.

    Thanks!

  7. Hello Uboters, 

    I am planning to subscribe to one of the Browser plugins and I wanted to know which one works better, well maintained and updated... I also need advise on a solution or a plugin that solve Google ReCaptcha, hCaptcha and the Cloudflare Captcha.

     

    Thank you.

  8. On 5/16/2023 at 2:34 PM, Seth Turin said:

    Can you tell me more context for what you're trying to do? 

    Google has some pretty strong anti-bot protection when it comes to the login screen. The previous browser didn't load at all. It looks like the they've rigged it so that the only way to login is to manually type into the fields.

    The Windows commands will work, but they can be a bit clunky. 

    If you're automating stuff within your own account, this shouldn't be an issue, because you can just login once and you'll be logged in forever. 

    If that's not the case, then if you give me an idea of what you're doing, I can try to help you find a better way around it.

    I was trying to login to multiple Google accounts at the same time.

    I am also tying to complile a simple bot but I keep getting multiple errors about "Error opening file for writing"

    I aatached the 1st error screenshot but there are plenty other that popup right after this one.

     

    Can anyone help?

     

    vfsscrns.png

  9. I don't know about other users, but for me it does not work...  I opened a support request about the issue and I was asked to downgrade UbotStudio to a previous version which I did, I followed all instructions and still not working.

     

    The Automaxed browser does not load at all... Here is the error I am getting:

     

    Desktop-scree.png

    Desktop-screensh.png

×
×
  • Create New...