ScreenRobot

abstract class ScreenRobot<out A : RobotActions, out S : RobotAssertions>(robotActions: A, robotAssertions: S)

Base class for implementing a robot DSL.

Constructors

Link copied to clipboard
fun <out A : RobotActions, out S : RobotAssertions> ScreenRobot(robotActions: A, robotAssertions: S)

Functions

Link copied to clipboard
fun check(block: S.() -> Unit): S
Link copied to clipboard
fun given(block: () -> Unit)
Link copied to clipboard
fun perform(block: A.() -> Unit): A