Jump to content
UBot Underground

Search the Community

Showing results for tags 'javascript'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Announcements and News
    • Join the UBot Community
  • General
    • General Discussion
    • Mac and UBot Studio
    • Journeys
    • Buy, Sell, Free
    • Scripting

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

  1. Ok, I am at it again with my fuzzy matching javascript algorithm. The original link can be found here http://www.ubotstudio.com/forum/index.php?/topic/14573-adapting-a-javascript-prototype-object-to-a-ubot-script/ . The new script has some additional features, namely (1) returns the exact name that was matched and (2) can check the name against a list, rather than a 1:1 setup (as before). Eventually, I'd like to adapt it to take an entire string and return the index number of where it found the fuzzy match (see end of this post). Anyway, I have a new script I downloaded from the following l
  2. <li class="genderFormItem "> <div class="formInputWrapper"> <h3></h3> <div class="fieldsetWrapper"> <fieldset class="formInlineCheckedSet"> <ul> <li> <label> <input name="gender" type="radio" value="female"> <span class=" gender "> Female</span> </label> </li> <li>
  3. Hello, Recently i purchased ubot and its really awesome the only big issue i am facing with this is that it does not spoofs resolution and os, so all the traffic that comes from ubot has the same resolution and os. can this be spoofed using JavaScript? if yes can someone please give me the javascript code and please tell me how i can use it to send fake resolution and os info to webpages via ubot? I would really appreciate if someone can help me with this. Thanks in Advance.
  4. Anyone knows how to run a javascript code into a script and instead of displaying the result into the ubot browser i want to #Set the result into a variable or $add it to a list. I have tried a few things, like Run Javascript, tried the $eval, tried with Define Function but it all seems not to work for me. Thanks in advance.
  5. Does any one the bot crash with him when solving captcha , it crash with me all the time in this site http://www.b-whatsapp.com/main/ navigate("http://www.b-whatsapp.com/main/", "Wait") wait for browser event("Everything Loaded", "") wait for element(<name="message">, "", "Appear") type text($element offset(<id="number">, 0), 966554422827, "Standard") type text(<name="message">, "Hi", "Standard") type text(<name="captcha">, $solve captcha(<src="captcha.php">), "Standard") i do not know any thing about JavaScript , maybe it can pass this issue , OR HTTP
  6. I have a preview button on the page. When I copy link address in Chome I see the code below. javascript:__doPostBack('m_lbPreview','') In Chrome it opens a new tab and has a URL for this tab. My goal is to get that URL. In ubot I can see the new popup try to open, but then it disappears and I am left on the same page. If you would like to see it in action I recorded a short video at http://screencast.com/t/GwnigbENAFml. Any suggestions would be appreciated.
  7. Hello. I'm currently playing around with javascript a little bit. But I don't understand how and when Ubot assigns results from javascript to ubot variables. So basically we have two functions in ubot: 1. run javascript 2. $eval() Questions: 1. Is it possible with "run javascript" to return values to ubot studio? Probably not right? 2. Where are variables to I use within "run javascript" are stored? Are the per browser instance? So when I run multiple browsers, are they unique for each browser? 3. How exactly does the $eval() command work? can I put multiple javascript commands in
  8. I really need to be able to scrape javascript alert boxes on ubot. In a normal browser, they do pop up, however they don't on ubot. I'm talking about these kind of popups: http://i.imgur.com/mW0yKYS.jpg http://i.imgur.com/70bgNqm.jpg How can I scrape the text on them???????
  9. I have an HTML table that is generated using ubot. Now I want the bot to go through a specific column in the table and, if a cell contains only the word "yes", change the background color of that cell to green. Conversely, if the cell contains only the word "no", I want the cell background to change to red. Any ideas regarding how how to go about this would be greatly appreciated! I have some coding experience (JavaScript, jQuery, jQuery mobile, PHP, etc.) but I'm very new to ubot. For reference, here is my current ubot code: clear table(&my table) clear list(%rows) clear list(%comp
  10. Hi, all. I need to scrape results from a page, that load necessary elements on scrolling. I know the id of the element, that appears at the bottom of the page after several "scrolls", so it seems to me, that I should use "run javascript", "wait for an element" or "focus". However, I've tried several receipts from this forum, but none of them worked. In particular, I've tried the script window.scrollTo(0,document.body.scrollHeight); which was suggested several times in this forum (here, here and here). It didn't help. I saw neither scrolling no parsed elements. More sophisticated tric
  11. I came across this really cool site. My friend sent it to me, told me his Teacher help make it. I think its really useful + its helping me understand things by being able to do them in real time. Might not be for all but if you are trying to learn more about coding, depending what your learning, this site may be able to help. http://www.codecademy.com/ Hope you enjoy it as much as i do.
  12. Hi Is there any way to manupilate UI Html Panel? Here is my simple code: set(#javascript, "<script src=\"http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js\"></script>", "Global") ui html panel("<div class=\"start\">1</div>", 50) set(#value, 1, "Global") loop(10) { set(#start, $eval("$(\'.start\').html(\'{#value}\');"), "Global") wait(0.5) increment(#value) } I want the value of the ui html panel to increment when pressing Run button on Ubot Dont knwo if it works, anyone have any idea?
×
×
  • Create New...