Mouse Over
From UBot Studio
				
								
				(Difference between revisions)
				
																
				
				
								
				|  (→Example) | |||
| (3 intermediate revisions by one user not shown) | |||
| Line 3: | Line 3: | ||
| This command is part of the [[Browser Commands|Browser Command]]. This command will mouse over a specified item on a webpage. | This command is part of the [[Browser Commands|Browser Command]]. This command will mouse over a specified item on a webpage. | ||
| − | It is especially handy on websites with drop down menus that requires  | + | It is especially handy on websites with drop down menus that requires a mouse over in order to show more options. | 
| '''Element to Mouse Over:''' Refers to the item that should be moused over.   | '''Element to Mouse Over:''' Refers to the item that should be moused over.   | ||
| Line 14: | Line 14: | ||
| == Example == | == Example == | ||
| − | <pre>navigate("http:// | + | <pre>navigate("http://alienryderflex.com/mouseover_menus_example.html", "Wait") | 
| wait(5) | wait(5) | ||
| − | mouse over | + | mouse over(<onmouseover="showMenu(1)">, "No") | 
| + | |||
| </pre> | </pre> | ||
| − | [[File: | + | [[File:mouseover03.gif]] | 
| Running the script will mouse over the element labeled "Forum" to display the additional options. | Running the script will mouse over the element labeled "Forum" to display the additional options. | ||
Latest revision as of 21:20, 6 February 2017
This command is part of the Browser Command. This command will mouse over a specified item on a webpage.
It is especially handy on websites with drop down menus that requires a mouse over in order to show more options.
Element to Mouse Over: Refers to the item that should be moused over.
Clicking the Advanced option on the command expands and reveals another option.
Mouse Over Using Location: Mouses over a selected item by location.
[edit] Example
navigate("http://alienryderflex.com/mouseover_menus_example.html", "Wait")
wait(5)
mouse over(<onmouseover="showMenu(1)">, "No")
Running the script will mouse over the element labeled "Forum" to display the additional options.

