public interface MouseInputSimulationFixture
Modifier and Type | Method and Description |
---|---|
MouseInputSimulationFixture |
click()
Simulates a user clicking this fixture's GUI component.
|
MouseInputSimulationFixture |
click(MouseButton button)
Simulates a user clicking this fixture's GUI component.
|
MouseInputSimulationFixture |
click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's GUI component.
|
MouseInputSimulationFixture |
doubleClick()
Simulates a user double-clicking this fixture's GUI component.
|
MouseInputSimulationFixture |
rightClick()
Simulates a user right-clicking this fixture's GUI component.
|
MouseInputSimulationFixture click()
IllegalStateException
- if the component is disabled.IllegalStateException
- if the component is not showing on the screen.MouseInputSimulationFixture click(MouseButton button)
button
- the button to click.IllegalStateException
- if the component is disabled.IllegalStateException
- if the component is not showing on the screen.MouseInputSimulationFixture click(MouseClickInfo mouseClickInfo)
mouseClickInfo
- specifies the button to click and the times the button should be clicked.NullPointerException
- if the given MouseClickInfo
is null
.IllegalStateException
- if the component is disabled.IllegalStateException
- if the component is not showing on the screen.MouseInputSimulationFixture doubleClick()
IllegalStateException
- if the component is disabled.IllegalStateException
- if the component is not showing on the screen.MouseInputSimulationFixture rightClick()
IllegalStateException
- if the component is disabled.IllegalStateException
- if the component is not showing on the screen.Copyright © 2007-2012 FEST (Fixtures for Easy Software Testing). All Rights Reserved.