Simulates typing the specified text while this element has focus. Note that for some elements, typing '\n' submits the enclosed form. @param text the text you with to simulate typing @exception IOException If an IO error occurs
(final String text)
| 519 | * @exception IOException If an IO error occurs |
| 520 | */ |
| 521 | public void type(final String text) throws IOException { |
| 522 | for (final char ch : text.toCharArray()) { |
| 523 | type(ch); |
| 524 | } |
| 525 | } |
| 526 | |
| 527 | /** |
| 528 | * Simulates typing the specified character while this element has focus, returning the page contained |