To handle key press events like to press page down, tab key or other keys selenium RC supports this by passing ASCII code of keys to keyDownNative function.
Syntax:
keyDownNative(String keycode);
Example:
- For page down/scroll: keyDownNative("32"); //32 is ASCII code for space bar.
- To press tab key: keyDownNative("9"); // 9 is ASCII code for Tab.