Jump to content
UBot Underground

Lucas

Fellow UBotter
  • Content Count

    24
  • Joined

  • Last visited

Community Reputation

1 Neutral

About Lucas

  • Rank
    Member

Profile Information

  • Gender
    Not Telling

System Specs

  • OS
    Windows 8
  • Total Memory
    < 1Gb
  • Framework
    v3.5
  • License
    Standard Edition

Recent Profile Visitors

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

  1. It's been asked before. The answer is yes. Anyone with an update subscription gets 5.
  2. Nothing more to say about videos but if you (or whoever does the updates) could update the Wiki I'd really appreciate that. I use the Wiki a lot as I like to use the Code Editor. The short examples there are really, really helpful.
  3. I'm just starting as well. I often use the Wiki http://wiki.ubotstudio.com/wiki/Main_Page The command and function explanations there often contain a short example. I've seen great examples on this board as well. This board came up when I Googled Ubot loop through table and similar.
  4. That's the truth. Nothing teaches better than rough experience .
  5. I spent half a day hunting for a bug in some code I wrote. My expected test data wasn't posted to 2 lists. I set it up to pull from 2 test CSVs and write to the lists. When I'd set up the 2nd test CSV I'd copied much of the data from the first. I couldn't see anything whatsoever wrong with my program logic...after pause-debugs and loads of alerts I could see my data elsewhere but not in the test lists. I was 9/10 of the way to sending a bug report to Ubot support when I suddenly realized it was the "Delete" default setting on the add item to list. Why is that set to delete by default? I ca
  6. Fantastic. Thank you. Tested and works sweetly. Never would have figured out that $new line bit.
  7. Is there a way to get data into a list from a UI element? I need to create a number of sites in a network passing just the site names. It would be sweet if I could just enter the data into a field and not have to prepare a CSV or file. Thanks.
  8. Not what you asked for but you might want to see this thread: http://www.ubotstudio.com/forum/index.php?/topic/14912-exceptional-ubot-training/ I'm coding Ubot with good confidence now after 5 days of doing what I wrote there. (I've programmed before).
  9. Interesting. In my code I assume that if the element doesn't exist the website has changed in some way and I need to examine it manually. So after the wait for element (with just a 5 second time out) I have an IF which stops the script with an error if the element does not exist. I guess it depends on the site though... If it's a site I own and control then I might do it a bit like your way. I imagine you have a set number of iterations?
  10. I might have been stumped for hours if not for this thread. I just dragged my variable to the $exists parameter window got 'invalid parameter'. Couldn't work it out. It accepted: $exists(<innertext=#my variable>) Tested and it works fine.
  11. If you look in the Buy Sell forum, seems there's a nifty plugin there that's great for this.
  12. So damn glad I asked this question. I coded up my first script...I tested it in individual pieces which worked perfectly. I'm the boss I thought. I'm gonna rule the internet. But when I ran the nodes together the whole process (which formerly worked in pieces) broke repeatedly and I couldn't understand why. I used 'wait for browser event' still in a few places, and it was still breaking at different points for no clear reason. I didn't expect the type of waiting to be such a script breaking issue. Wait for element is what finally made the statements work as I expected. Waiting is a big
  13. How do you wait in your code? I tried "Wait for browser event" in my script and noticed that at times it wasn't enough. Certain commands didn't work until I put an additional "wait 3 seconds" before them. How do you approach your wait steps? What's the best way? Do you use: Wait for browser event Wait for element Wait Or a combination?
  14. Oh! What I actually meant was run them one after the other in sequence as though they were together in one tab. I guess didn't make that clear. That sounds pretty neat - the thread thing. I'm now thinking that my best approach is to use Defines...
  15. A script wasn't working so I separated it into 3 tabs. The reason it's not working is something to do with time delays between steps. I tested the individual tabs with some wait() commands inserted and it works. I'm reluctant to copy/paste the whole thing together because it might not work when all together. (Previously the individual steps worked when I tested with Run Node but did not when in the whole script). So is there a way to have all tabs run at once?
×
×
  • Create New...