First we need to launch the IDE. Because the runIdeForUiTests
task is blocking, we can run it as an asynchronous process:
./gradlew ui-test-example:clean ui-test-example:runIdeForUiTests &
Next, we can start the tests. Because they run locally, you must be sure the Welcome Frame is visible on the screen:
./gradlew ui-test-example:test
Or, just run all tasks together with one command:
./gradlew ui-test-example:clean ui-test-example:runIdeForUiTests & ./gradlew ui-test-example:test
The Remote-Robot library is inspired by Selenium WebDriver. It supports IntelliJ IDEA since version 2018.3
.
It consists of a remote-robot
client and a robot-server
plugin:
remote-robot
- is a client (test) side library used to send commands to therobot-server
plugin.robot-server
- is an IDEA plugin that should run with the plugin you are developing.
The easiest way to start the test system is to execute the runIdeForUiTests
task. (See Quick Start section, above.) When IDEA is initialized, the robot-server
plugin starts listening for commands from the UI test client.
The remote-robot
library communicates with the robot-server
plugin via HTTP protocol. This connection means you can launch IDEA on remote machines or in docker containers to check your plugin within different test environments.
Last version of the Remote-Robot is 0.9.35
In the test project:
repositories {
maven { url = "https://jetbrains.bintray.com/intellij-third-party-dependencies" }
}
dependencies {
testImplementation("com.intellij.remoterobot:remote-robot:REMOTER-ROBOT_VERSION")
}
In the plugin project:
downloadRobotServerPlugin.version = REMOTER-ROBOT_VERSION
runIdeForUiTests {
systemProperty "robot-server.port", "8082" // default port 8080
}
Of course, you can write UI tests in the plugin project.
In the UI test project:
RemoteRobot remoteRobot = new RemoteRobot("http://127.0.0.1:8082");
We use the XPath
query language to find components.
Once IDEA with robot-server
has started, you can open http://ROBOT-SERVER:PORT
link.
The page shows the IDEA UI components hierarchy in HTML format. You can find the component of interest and write an XPath to it, similar to Selenium WebDriver.
There is also a simple XPath generator, which can help write and test your XPaths.
For example: Define a locator:
Locator loginToGitHubLocator = byXpath("//div[@class='MainButton' and @text='Log in to GitHub...']");
Find one component:
ComponentFixture loginToGitHub = remoteRobot.find(ComponentFixture.class, loginToGitHubLocator);
Find many components:
List<ContainterFixture> dialogs = remoteRobot.findAll(
ComponentFixture.class,
byXpath("//div[@class='MyDialog']")
);
Fixtures support the PageObject
pattern.
There are two basic fixtures:
ComponentFixture
is the simplest representation of a real any component with basic methods;ContainerFixture
extendsComponentFixture
and allows searching other components within it.
You can create your own fixtures:
@DefaultXpath(by = "FlatWelcomeFrame type", xpath = "//div[@class='FlatWelcomeFrame']")
@FixtureName(name = "Welcome Frame")
public class WelcomeFrameFixture extends ContainerFixture {
public WelcomeFrameFixture(@NotNull RemoteRobot remoteRobot, @NotNull RemoteComponent remoteComponent) {
super(remoteRobot, remoteComponent);
}
// Create New Project
public ComponentFixture createNewProjectLink() {
return find(ComponentFixture.class, byXpath("//div[@text='Create New Project' and @class='ActionLink']"));
}
// Import Project
public ComponentFixture importProjectLink() {
return find(ComponentFixture.class, byXpath("//div[@text='Import Project' and @class='ActionLink']"));
}
}
// find the custom fixture by its default xpath
WelcomeFrameFixture welcomeFrame = remoteRobot.find(WelcomeFrameFixture.class);
welcomeFrame.createNewProjectLink().click();
We use the JavaScript rhino
engine to work with components on the IDEA side.
For example, retrieving text from ActionLink component:
public class ActionLinkFixture extends ComponentFixture {
public ActionLinkFixture(@NotNull RemoteRobot remoteRobot, @NotNull RemoteComponent remoteComponent) {
super(remoteRobot, remoteComponent);
}
public String text() {
return callJs("component.getText();");
}
}
We can retrieve data using RemoteRobot
with the callJs
method. In this case there is a robot
var in the context of JavaScript execution.
The robot
is an instance of extending the org.assertj.swing.core.Robot
class.
When you use the callJs()
method of a fixture
object, the component
argument represents the actual UI component that was found (see Searching Components) and used to initialize the ComponentFixture
.
The runJs
method works the same way without any return value:
public void click() {
runJs("const offset = component.getHeight()/2;" +
"robot.click(" +
"component, " +
"new Point(offset, offset), " +
"MouseButton.LEFT_BUTTON, 1);"
);
}
We import some packages to the context before the script is executed:
java.awt
org.assertj.swing.core
org.assertj.swing.fixture
You can add other packages or classes with js methods:
importClass(java.io.File);
importPackage(java.io);
Or just use the full path:
Boolean isDumbMode = ideaFtame.callJs(
"com.intellij.openapi.project.DumbService.isDumb(component.project);"
);
Sometimes you may not want to dig through the whole component to find out which field contains the text you need to reach.
If you need to check whether some text is present on the component, or you need to click at the text,
you can use fixture
methods:
welcomeFrame.findText("Create New Project").click();
assert(welcomeFrame.hasText(startsWith("Version 20")));
List<String> renderedText = welcomeFrame.findAllText()
.stream()
.map(RemoteText::getText)
.collect(Collectors.toList());
Instead of looking for text inside the component structure we just render it on a fake Graphics
to collect text data and its points.
If you already familiar with Kotlin, please take a look at the kotlin example. You may find it easier to read and use.
We use the step
wrapper method to make test logs easy to read. The example simple StepLogger
shows how useful it can be.
For instance, by implementing your own StepProcessor
, you can extend the steps workflow and connect to the allure report framework.