Jump to content
UBot Underground

unibotsi

Members
  • Content Count

    60
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by unibotsi

  1. I`m having the same problem. I`ve already send an email to the developer 1 week ago but didn`t received any feedback yet.
  2. I`m getting the exact same error in 2023 with the latest version (6.7.23) During the first 3 - 5 loops everything is working like it should be, then the error is popping up. Any solutions or work arrounds for this?
  3. Yes, I`m having the same problem with the latest version
  4. Hello, I`m trying to create a bot for uploading video to a video platform, but it looks like the website can recognize, that its a bot and not a human, so the login process doesn`t work. To show the problem in more detail, I`ve created a short video: What can I do to get the login working? Kind regards
  5. Hello, I`m still facing the same problem. JavaScript will not execute in the compiled bot. I`ve red in other threads that I should open google.com first, because there is JS on the site which will trigger the bot to execute JS on the other site I want to work with, but this also doesn`t work. Is there any other thing I can try?
  6. Can you please describte this in a little bit more detail?
  7. I`m using the following JS in my bot, to enlarge a table document.getElementsByClassName('kw-left-table')[0].style.height="40000px"; which is working perfectly in ubot, but as soon as I run the compiled bot, the JS is not executed anymore. What could be the problem here?
  8. Its working now! After installing the latest version of ubot on my vps and compiling my bot again, suddently its opening. Thanks a lot for your help, cob007
  9. Sounds like I should give it a try. Where can I download this version? In my Dashboard there is only the latest version available....
  10. @cob007 Yes, the .net Framework is already installed. Here is a screenshot from the bot running, but only visible at the task manager: Report
  11. Hello, sorry for hijacking this post from 2018, but I`m facing the exact same problem like the other people here in this thread. Since its almost 2 years later now, I hope there is something like a solution/fix out there already. My problem: On my Windows 10 Pro (64 Bit), running on Oracle VM VirtualBox, I can`t run the my bots, I`ve created with the latest version of uBot. Whats happening: When I double click on the exe the first time, a window show up which will download the needed support files. After this is done, the bot will not start. I`m not using an installer for my bots, I just e
  12. I`ve managed to remove the latest .net update from my system, but the problem still exists. Its defenitely caused by the values numbers from the UI TEXTBOXES Does anybody else having this problem? I have it on 2 different computers (windows 7 and windows 10). It`s making me crazy because from one secound to the other everything stoped working correctly (on both computers) and I have no idea why. The only thing I found out is, that if I replace the numbers comming from the UI TEXTBOXES in the source code by real numbers, its working again....
  13. My input is a symple 1 as a number of course. Since 2 days I`m also having problems to run my already compiled bots (who worked before). For me it looks like I`m facing the same UI problem, described here: http://network.ubotstudio.com/forum/index.php/topic/22673-windows-10-latest-update-cause-ubot-ui-crash/ I`ve tried to perform the steps described in the video of this thread, but since my system language is german and not english, I can`t find the same websites which are showing up in that video. Any other solutions or fixes for this? Can we hope for a fix from the developer for it?
  14. While I was working on my project and running some test, suddently I get the message "conversion from string "" to type Integer is not valid" What does it mean? I think it has to do with the first loop. If I set a fixed number into the loop, instead of using a variable number coming from a UI textbox, its working. Whats wrong here? This is my code: ui open file("Textfile mit Keywords",#importedkeywords) ui save file("Save Path",#savepathset) ui text box("Position SV (Ombros = 27; Pilhar = 28)",#positionsvvarable) ui text box("Number of Loops",#numberofloops) add list to list(%keyword
  15. thank you. this is working for me. the ubot wiki entry about the math functions is a little bit outdated and irritating
  16. In ubot developer edition 6.0 rev 4 I can?t find the $multiply, $add or $substruct function. Even if I´m using the search field, nothing showes up. Do I have to install a specific plugin to get this functions?
  17. no, it has nothing to do with the filename. the website itself is generating new filenames for each document by itself. do you have another approach for me?
  18. I`ve discovered another problem: Since I put all this commands into a loop, the "save as window" will only open, on the last loop. Example 5 Loops: First 4 times of the loop: "save as window" will not pop up 5th time of the loop: "save as window" will pop`s up, but only the last csv file (from the 5th run) is going to be saved Example 1 Loop: "save as window" will pop up Since I have to make at least 100 Loops, how can I trigger the "save-as" pop-up all the time? Is there something like a break-command I can use?
  19. Thank you so much, finally I got it working, thanks to your code. This is the code I had to add to get the save as dialog saving the file: plugin command("WindowsCommands.dll", "click dialog button", "Speichern unter", "Speichern") plugin command("WindowsCommands.dll", "keyboard event", "Tab", "Key Press") plugin command("WindowsCommands.dll", "keyboard event", "Tab", "Key Press") plugin command("WindowsCommands.dll", "keyboard event", "Tab", "Key Press") plugin command("WindowsCommands.dll", "keyboard event", "Tab", "Key Press") plugin command("WindowsCommands.dll",
  20. Thanks a lot for your answer and the code Code Dacota! The problem is, that I can`t work with the "copy to clipboard"-function, kwfinder is providing. Everytime I click on it, kwfinder sends me a info which says "can`t copy to clipboard - something went wrong" So I have to download the csv files to a defined folder. Can you describe in more detail how I can "Tab" through the fields and type the directory needed then hit "Enter". It could also be helpful to me to know how I can setup the "set active window" command. This command says: "Press the Control Key over the object you wish
  21. I`m having big problems saving CSV files from an online keyword research tool I`m using. I`ve already searched this forum and other sources but nothing helped me. What I want to do: After a click command on: Download as CSV, the "Save as Dialog" will open. (so far so good) Now I only need to set a WINDOWS COMMAND -> CLICK DIALOG BUTTON -> INPUT THE CORRECT VALUES....right? Wrong! When I put this command after the Click Command, the Save as Dialog will open but nothing is going to happen from this point on. Please see this video for more details: https://www.loom.com/share/8f94ea109
  22. I`m still struggeling with this problem! I`ve made another video to show the problem in more detail: https://www.loom.com/share/7c8e555929864303bec54706130986b0
  23. I just found out that every time when a value gets scraped, which has a . or a , ubot will put it into quotes, in the final export file (txt-file) - in the debugger there are no "-signs to see. How can I tell ubot: don`t put "-signs arround values which has , or . in it. Here are some sample values where the problem accours: "45.000", "$1.23"
  24. Thanks for your help ds062692! I did it exactly like you said and it working now. The only problem left is the thing with the quote-signs. For some reasons they are not showing up in the debugger, but when I export all values to my text file, then some values will have the quote signs. I have no idea why. Do you have any idea what generates the quote signs?
  25. Hello, I`m having a hard time scraping some values from a keyword researching tool. In total I have 3 different problems, which I`m going to describe in more detail in my following 2 short videos: Problem 1: How can I remove the " signs, from the scraped data? Problem 2: How can I get all the scraped elements into one line, seperated by comma? https://www.loom.com/share/c46ad50de064427c8b6c06a18c8bca8b Problem 3: How can I scrape only one specific element, without scraping all similar elements? https://www.loom.com/share/e005e88c283246d28ec9870702c202d1 Would
×
×
  • Create New...