
| Key: |
SRC-472
|
| Type: |
Bug
|
| Status: |
Open
|
| Priority: |
Major
|
| Assignee: |
Unassigned
|
| Reporter: |
Alex Chaffee
|
| Votes: |
0
|
| Watchers: |
0
|
|
If you were logged in you would be able to see more operations.
|
|
|
|
|
| Component/s: |
Documentation
|
| Affects Version/s: |
1.0 beta 1
|
| Fix Version/s: |
None
|
|
|
Original Estimate:
|
Unknown
|
Remaining Estimate:
|
Unknown
|
Time Spent:
|
Unknown
|
|
|
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();
|
|
Description
|
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();
|
Show » |
| There are no comments yet on this issue.
|
|