fromRobot static method

Button fromRobot(
  1. RobotClient robot,
  2. 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));
}