fromRobot static method
- RobotClient robot,
- String name
Get the Button named name
from the provided robot.
final myButton = Button.fromRobot(myRobotClient, "my_button");
For more information, see Button component.
Implementation
static Button fromRobot(RobotClient robot, String name) {
return robot.getResource(Button.getResourceName(name));
}