We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd3d900 commit af5bbb0Copy full SHA for af5bbb0
tests/acceptance/Lab.robot
@@ -9,6 +9,9 @@ Suite Setup Start Lab Tests
9
Test Tags app:lab
10
11
12
+*** Variables ***
13
+${CSS_LAUNCHER_CARD} css:.jp-LauncherCard-label
14
+
15
*** Test Cases ***
16
Lab Loads
17
Capture Page Screenshot 00-smoke.png
@@ -35,4 +38,6 @@ Start Lab Tests
35
38
36
39
Click Launcher
37
40
[Arguments] ${title}
- Click Element css:.jp-LauncherCard-label[title^\="${title}"]
41
+ ${item} = Set Variable ${CSS_LAUNCHER_CARD}\[title^\="${title}"]
42
+ Wait Until Element Is Visible ${item} timeout=10s
43
+ Click Element ${item}
0 commit comments