Setcursorposition

Moves the text cursor to the specified position in the given input element or textarea. This method will fail if the specified element isn't an input element or textarea.

Required Attributes
locator
Element Locator to identify the html element.
position
the numerical position of the cursor in the field; position should be 0 to move the position to the beginning of the field. You can also set the cursor to -1 to move it to the end of the field.
Usage Examples
Example #1
<selenium baseurl="http://www.google.com">
   
<open url="/" />
   
<setCursorPosition locator="//input[@id='q']" position="-1" />
</selenium>