Mouse Over

From UBot Studio
(Difference between revisions)
Jump to: navigation, search
(Created page with " This command is part of the Action Commands. Type text is used when you need to type text into a browser text field. You simply drag this command into the scripting are...")
 
Line 1: Line 1:
  
  
This command is part of the [[Action Commands]]. Type text is used when you need to type text into a browser text field. You simply drag this command into the scripting area and choose an element using one of the selector tools. (See [["The Selectors"]] for more information).
+
This command is part of the [[Action Commands]]. This command will mouse over a specified item on a webpage.
 +
It is especially handy on websites with drop down menus that requires to hovering the mouse over and element to show more options.
  
 
== Example ==
 
== Example ==
  
<pre>type text(<username field>, "my username", "Standard")</pre>
+
<pre>navigate("http://www.sitepoint.com/", "Wait")
 +
wait(5)
 +
mouse over($element offset(<class="sf-with-ul">, 0), "No")
 +
</pre>
  
[[File:Type Text.png]]
+
[[File:mouseover.png]]
  
Running the script will fill the selected field with the text "my username".
+
Running the script will mouse over the element labeled "Forum" to display the additional options.

Revision as of 23:28, 7 November 2012


This command is part of the Action Commands. This command will mouse over a specified item on a webpage. It is especially handy on websites with drop down menus that requires to hovering the mouse over and element to show more options.

Example

navigate("http://www.sitepoint.com/", "Wait")
wait(5)
mouse over($element offset(<class="sf-with-ul">, 0), "No")

File:Mouseover.png

Running the script will mouse over the element labeled "Forum" to display the additional options.

Personal tools
Namespaces

Variants
Actions
Navigation
Toolbox