Jump to content
UBot Underground

PRO

ADMIN
  • Content Count

    464
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by PRO

  1. You can try with the socket commands of this plugin to handle such requests also https://automaxed.com/plugins/network-automation Just in case. $socket request is what I typically use. Not 100% sure if it solves your issue but can be tried.
  2. I see. If you already increased the limit, it may be a "indefinite" redirect loop. If it is a indefinite loop, no limit will do. This would be an error on the website or web application you are sending the request to. If it is not an indefinite loop, contacting dev may be the way to go
  3. Hello, it means that the command or function you are using is not allowing this much redirects. Very likely there is an inbuilt or pre-configured limit, to follow redirects only for e.g. 3 hops maximum. If the occurring redirects are above such a defined limit, it will return the error message you mentioned. You can try to configure it otherwise to allow more redirects or "hops" maximum, investigate on the redirections (maybe indefinite redirect loop?), optionally try to send the request to the last URL at the end of redirection chain and, if nothing helps, consider using anothe
  4. Attention: This is an important message for all previous customers of pash

    On March 11th, 2022 you should have received an email from automaxed regarding special options.

    We were informed that some of you may have missed it because either it landed in the spam folder or you did not fill the verification form to be notified.

    If you are a previous customer of pash and did not receive the email (2022-03-11) you can reach out: https://automaxed.com/support

    If you want to stay updated about automaxed in general, you can sign up: https://automaxed.com/newsletter

    Latest news: click here to read latest news

    Create-Custom-Automation-Software-With-UBot-Studio.jpg

  5. Just tested your code snippet. It seems to work fine without any changes. At least all the variables have content, and no errors. I tested it using version 5.9.55. Just not sure what the variable #qa is meant to do, stays empty.
  6. Hello, I prefer to use version 5.9.55 together with plugins.
  7. I could take a look at it. Have sent you a PM.
  8. You can scroll to the bottom of a page by running the following JavaScript code snippet inside your browser: window.scrollTo(0,document.body.scrollHeight);
  9. The plugin page can be found here https://automaxed.com/plugins/desktop-automation
  10. Hello. I just tried it using Automaxed Browser Automation & Desktop Automation Plugins, it works. Recorded a video here: Code used: set(#username,"YOUR-USERNAME","Global") set(#password,"YOUR-PASSWORD","Global") comment("launch real browser") plugin command("Browser Automation.dll", "browser cleaning up", "False") plugin command("Browser Automation.dll", "browser chrome add excluded arguments", "enable-automation") plugin command("Browser Automation.dll", "browser chrome add arguments", "--disable-blink-features=AutomationControlled") plugin comm
  11. Hello, it could be related to how the website treats different user agents differently, not 100% sure yet. You can try to set another user agent for the inbuilt browser first, e.g. choose from here https://developers.whatismybrowser.com/useragents/explore/software_type_specific/web-browser/ There is the chance this might change the rendering.
  12. Here is a classic and funny motivational video. How obsessed can people get about developers? 😂
  13. Have seen the same issue recently. Try to run UBot Studio as Administrator. This solved it for me.
  14. Hello, please post a code example so we can take a look.
  15. Hello @bloodydox, thanks for your acknowledgement! I get you. An immediate solution can be to use the stable 5.9.55 version https://s3-us-west-2.amazonaws.com/ubotsupportfiles/5.9.55+Setup.msi and a specialized plugin for handling external browsers https://automaxed.com/plugins/browser-automation If you need help regarding the browser automation plugin and how to handle JS fingerprints with it, you can reach out https://automaxed.com/support
  16. We have a plugin that enables users to easily automate clipboard functions like "set clipboard" and "get clipboard": https://automaxed.com/plugins/data-and-files-automation I never tried to do it by combining "type text" commands. Hope it may help you further.
  17. You can send me a PM with a link to the site you try to automate. I can take a look for you.
  18. Wishing Everyone a Happy and Successful New Year!

    The UBot Forum is going to be upgraded, so it is being served via secure connection very soon: https://network.ubotstudio.com/forum

    Thanks are going out to the Community, the UBot Team, the Server Specialist, all Developers, and everyone involved in keeping things going!

    To celebrate the coming new year, here is a 10% discount code for all Automaxed Plugins and Bundles. 

    Code: Happy2022

    The code can be entered at the end of the checkout process at automaxed.com plugin pages and is valid until the end of January 2022.

    Have a good start into the new year!

  19. Here is some example code how it can be done: plugin command("Data and Files Automation.dll", "Data and Files Automation Set License", "YOUR-LICENSE-KEY") ui text box("Input Small Amount",#input_number) ui stat monitor("Output: ",#output_number) ui button("Convert if less than 1 BTC") { set(#output_number,#input_number,"Global") set(#count_characters,$plugin function("Data and Files Automation.dll", "$char count", #input_number, "False"),"Global") if($comparison(#count_characters,"< Less than",9)) { then { set(#how_many_zeros_to_add,$subt
  20. Hello. You can send me a PM with a link to the site you try to automate the login for. I can take a look for you. Merry Christmas!
  21. I think using "reset browser" is good, as it ensures the complete browser process gets terminated and started again thereafter. Also you can try utilizing additional plugins that allow to free up memory. And you may consider building your programs in such a way that after each task done the results are getting saved. So that if you need to restart the program, it knows where to go on. This is especially advisable if you try to automate a whole lot of tasks and want to prevent unforeseen events.
  22. Reset Browser: The command restarts the browser process. This will clear cookies, user agents and any other settings in the browser. Clear All Cookies: This command will only delete all cookies, nothing more, nothing less. So, if you want to be sure to have a complete new session, I would recommend using the "reset browser" command. If you only want to clear cookies, use "clear all cookies" instead. Hope it helps.
  23. Here I prepared some ready-made code as an example. You can run it and see how it works: comment("Go to the WYSIWYG editor and wait for it to load") navigate("https://fiddle.tiny.cloud/","Wait") wait(5) comment("We simply type something into it") type text($element offset(<tagname="html">,2),"test","Standard") wait(2) comment("Now we extract the contents from the WYSIWYG editor") set(#scraped_content,$scrape attribute(<(tagname="body" AND id="tinymce")>,"innerhtml"),"Global") comment("Now we will edit the contents inside of UBot, you can replace, append, w
  24. I have done it multiple times. If you use the inbuilt browser, it can be done like so: 1. Use the "scrape attribute" function to extract the contents of the WYSIWYG editor text area element. 2. Then, edit the content directly inside UBot however you want (append, edit, replace etc.). 3. Last step is to update the WYSIWYG editor text area, putting the edited contents back in, using the "change attribute" command on it.
×
×
  • Create New...