History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: SRC-472
Type: Bug Bug
Status: Open Open
Priority: Major Major
Assignee: Unassigned
Reporter: Alex Chaffee
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
Selenium Remote Control

JavaDoc for altKeyUp refers to nonexistent doAltDown method (and same for other control keys)

Created: 03/May/08 12:18 PM   Updated: 12/Aug/08 05:35 PM
Component/s: Documentation
Affects Version/s: 1.0 beta 1
Fix Version/s: None

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown


 Description  « Hide
The JavaDoc inside Selenium.java refers to nonexistent methods. References to doShiftUp need to be changed to shiftKeyUp, and likewise for alt, shift, control, and meta.


/** Press the shift key and hold it down until doShiftUp() is called or a new page is loaded.
*/
void shiftKeyDown();

/** Release the shift key.
*/
void shiftKeyUp();

/** Press the meta key and hold it down until doMetaUp() is called or a new page is loaded.
*/
void metaKeyDown();

/** Release the meta key.
*/
void metaKeyUp();

/** Press the alt key and hold it down until doAltUp() is called or a new page is loaded.
*/
void altKeyDown();

/** Release the alt key.
*/
void altKeyUp();

/** Press the control key and hold it down until doControlUp() is called or a new page is loaded.
*/
void controlKeyDown();

/** Release the control key.
*/
void controlKeyUp();


 All   Comments   Work Log   Change History      Sort Order:
There are no comments yet on this issue.