Skip to content

Commit 0451985

Browse files
author
Dennis Labordus
committed
Fix CIM Mapping issue and warning in Robot Test.
Signed-off-by: Dennis Labordus <[email protected]>
1 parent 1440a36 commit 0451985

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

compas/docker-compose-basex.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ services:
6969
cim-mapping:
7070
labels:
7171
compas: true
72-
image: "lfenergy/compas-cim-mapping:0.8.5"
72+
image: "lfenergy/compas-cim-mapping:0.8.6"
7373
ports:
7474
- "9091:8080"
7575
environment:
@@ -144,7 +144,7 @@ services:
144144
open-scd:
145145
labels:
146146
compas: true
147-
image: "lfenergy/compas-open-scd:v0.13.0.3"
147+
image: "lfenergy/compas-open-scd:v0.15.0.0"
148148
healthcheck:
149149
test: ["CMD", "curl", "-f", "http://localhost/"]
150150
interval: 30s

compas/docker-compose-postgresql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ services:
7676
cim-mapping:
7777
labels:
7878
compas: true
79-
image: "lfenergy/compas-cim-mapping:0.8.5"
79+
image: "lfenergy/compas-cim-mapping:0.8.6"
8080
ports:
8181
- "9091:8080"
8282
environment:
@@ -151,7 +151,7 @@ services:
151151
open-scd:
152152
labels:
153153
compas: true
154-
image: "lfenergy/compas-open-scd:v0.13.0.3"
154+
image: "lfenergy/compas-open-scd:v0.15.0.0"
155155
healthcheck:
156156
test: ["CMD", "curl", "-f", "http://localhost/"]
157157
interval: 30s

integration-testing/include/general-openscd.robot

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@ Close Menu
5555
Sleep 100 milliseconds
5656

5757
Enable Extension
58-
[Arguments] ${extensionName}
59-
Open Menu Extensions
60-
${checkboxState}= Get Element State mwc-list#pluginList > mwc-check-list-item:has-text("${extensionName}") input[type="checkbox"] Checked
61-
IF ${checkboxState} == False
62-
Check Checkbox mwc-list#pluginList > mwc-check-list-item:has-text("${extensionName}") input[type="checkbox"]
58+
[Arguments] ${extensionName}
59+
Open Menu Extensions
60+
${checkboxChecked}= Get Element States mwc-list#pluginList > mwc-check-list-item:has-text("${extensionName}") input[type="checkbox"] *= checked
61+
IF ${checkboxChecked} == False
62+
Check Checkbox mwc-list#pluginList > mwc-check-list-item:has-text("${extensionName}") input[type="checkbox"]
6363
END
6464
# Press the escape key to close the dialog.
6565
Keyboard Key press Escape
@@ -102,7 +102,7 @@ Wait until executed
102102
Wait For Function element => element.className.indexOf('mdc-circular-progress--closed') >= 0 open-scd > mwc-circular-progress-four-color > div[role="progressbar"] timeout=30s
103103

104104
Close Issues Snackbar
105-
${snackbar}= Get Element State mwc-snackbar#issue > mwc-icon-button[slot="dismiss"] > button
106-
IF ${snackbar} == 'visible'
107-
Click mwc-snackbar#issue > mwc-icon-button[slot="dismiss"] > button
105+
${snackbarVisible}= Get Element States mwc-snackbar#issue > mwc-icon-button[slot="dismiss"] > button *= visible
106+
IF ${snackbarVisible} == 'visible'
107+
Click mwc-snackbar#issue > mwc-icon-button[slot="dismiss"] > button
108108
END

0 commit comments

Comments
 (0)