Skip to content

Commit 6fb2b2e

Browse files
authored
Update Remote Robot to 0.11.8 (#69)
Fixes #68 Signed-off-by: Zbynek Cervinka <[email protected]>
1 parent 4b46729 commit 6fb2b2e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ repositories {
3232
Add the following dependency:
3333
```
3434
dependencies {
35-
compile 'com.redhat.devtools.intellij:intellij-common-ui-test-library:0.0.3'
35+
compile 'com.redhat.devtools.intellij:intellij-common-ui-test-library:0.0.4-SNAPSHOT'
3636
}
3737
```
3838

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
group 'com.redhat.devtools.intellij'
1010
version projectVersion
1111

12-
def remoteRobotVersion = '0.11.7'
12+
def remoteRobotVersion = '0.11.8'
1313

1414
repositories {
1515
mavenLocal()

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
projectVersion=0.0.3
1+
projectVersion=0.0.4-SNAPSHOT
22
nexusUser=invalid
33
nexusPassword=invalid

src/main/java/com/redhat/devtools/intellij/commonuitest/fixtures/dialogs/project/pages/NewProjectFirstPage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public void setProjectSdkIfAvailable(String targetSdkName) {
6868
}
6969
projectJdkComboBox.click();
7070

71-
CommonContainerFixture parentFixture = waitFor(Duration.ofSeconds(20), Duration.ofSeconds(2), "The project JDK list did not load all items in 20 seconds.", this::didProjectSdkListLoadAllItems);
71+
CommonContainerFixture parentFixture = waitFor(Duration.ofSeconds(20), Duration.ofSeconds(2), "Wait for the 'Project SDK' list to finish loading all items.", "The project JDK list did not load all items in 20 seconds.", this::didProjectSdkListLoadAllItems);
7272
JPopupMenuFixture projectSdkList = parentFixture.jPopupMenus(byXpath("//div[@class='HeavyWeightWindow']")).get(0); // issue https://github.com/JetBrains/intellij-ui-test-robot/issues/104
7373
List<RemoteText> sdkItems = projectSdkList.findAllText();
7474
for (RemoteText sdkItem : sdkItems) {

src/test-project/src/test/java/com/redhat/devtools/intellij/commonuitest/fixtures/test/mainidewindow/idestatusbar/IdeStatusBarTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public void closeCurrentProject() {
5656

5757
@Test
5858
public void progressBarTest() {
59-
IdeStatusBar ideStatusBar = waitFor(Duration.ofSeconds(60), Duration.ofSeconds(1), "The progress bar in status bar did not appear in 60 seconds.", IdeStatusBarTest::isProgressbarWithLabelVisible);
59+
IdeStatusBar ideStatusBar = waitFor(Duration.ofSeconds(60), Duration.ofSeconds(1), "Wait for the appearance of progress bar in the IDE status bar.", "The progress bar in status bar did not appear in 60 seconds.", IdeStatusBarTest::isProgressbarWithLabelVisible);
6060
ideStatusBar.waitUntilProjectImportIsComplete();
6161
TipDialog.closeTipDialogIfItAppears(remoteRobot);
6262
MainIdeWindow mainIdeWindow = remoteRobot.find(MainIdeWindow.class, Duration.ofSeconds(5));

0 commit comments

Comments
 (0)