Package org.testfx.robot
Interface WriteRobot
-
- All Known Implementing Classes:
WriteRobotImpl
public interface WriteRobot
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidwrite(char character)Writes a given text character.voidwrite(java.lang.String text)Writes the given text characters one after the other.voidwrite(java.lang.String text, int sleepMillis)Writes the given text characters one after the other, sleeping forsleepMillismilliseconds after each typed character.
-
-
-
Method Detail
-
write
void write(char character)
Writes a given text character.- Parameters:
character- the text character to write
-
write
void write(java.lang.String text)
Writes the given text characters one after the other.- Parameters:
text- the text characters to write
-
write
void write(java.lang.String text, int sleepMillis)Writes the given text characters one after the other, sleeping forsleepMillismilliseconds after each typed character.- Parameters:
text- the text characters to writesleepMillis- the milliseconds to sleep for after each character
-
-