use of org.fest.swing.driver.ComponentDriver in project android by JetBrains.
the class NlComponentFixture method click.
/** Click in the middle of the view (typically selects it) */
public void click() {
new ComponentDriver(myRobot).click(mySurface, getMidPoint());
myRobot.waitForIdle();
}
use of org.fest.swing.driver.ComponentDriver in project android by JetBrains.
the class NlPropertyFixture method clickCustomizer.
public void clickCustomizer() {
//JPanel
// TextEditor
// BrowsePanel
// ActionButton
ActionButton button = GuiTests.waitUntilFound(myRobot, myValuePanel, Matchers.byType(ActionButton.class));
new ComponentDriver(myRobot).click(button);
}
Aggregations