Jump to content
UBot Underground

silviulucian

Fellow UBotter
  • Content Count

    88
  • Joined

  • Last visited

  • Days Won

    4

silviulucian last won the day on November 22 2019

silviulucian had the most liked content!

Community Reputation

9 Neutral

About silviulucian

  • Rank
    Advanced Member

Profile Information

  • Gender
    Male

System Specs

  • OS
    Windows 8
  • Total Memory
    More Than 9Gb
  • Framework
    v3.5 & v4.0
  • License
    Developer Edition

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. thank you thank you thank you thank you thank you thank you thank you
  2. Personally I was a little surprised to see it come out of beta when it did. I use Ubot 3 a lot and it helped me scale my business up so I have a ton of love for it but I can't seem to get anything done in Ubot 4. My gripe with it is that it hangs for minutes at a time in different places (sometimes when you select an element, other times on the simplest of things like a navigate node to page that's just a couple of Kb big) and sometimes it's behavior is inconsistent (sometimes it goes past Wait For Browser Event - Everything Loaded nodes like they weren't even there even though the page is cle
  3. Say, what was the library UBot was using for a browser? I keep thinking "Chromium" but that ain't it...
  4. it's crazy fast! just wanted to put that out there also helped me discover that the Skype IE plugin really slows the browser down (and UBot as a consequence, so if you have Skype installed, you might want to try disabling that for a speed boost even if you don't upgrade to IE9)
  5. I need to pump PDFs through UBot but they need to be HTML first. Do you guys know of any automated way to convert PDFs to HTML files? Maybe an app I could call from the command line, etc...
  6. what I ended up doing is using javascript to click the button inside the only iframe on the page var iframe = document.getElementsByTagName("iframe")[0]; var inputs = iframe.contentWindow.document.getElementsByTagName("input"); for(var i=inputs.length-1; i>=0; i--) { if (inputs[i].name == "commit") { input_file = inputs[i]; break; } } input_file.click(); being able to run javascript like that is a really powerful feature of UBot I think is not emphasized nearly enough
  7. Sorry to bump an old thread but I have a similar issue. Lilly, your example has me a little confused. There's no field being chosen in your example... the iframe body just gets overridden. So the problem of actually clicking input fields or typing in them is still there. Or am I totally missing the point?
×
×
  • Create New...