You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ui-tests-starter/tst-243+/software/aws/toolkits/jetbrains/uitests/testTests/QTestGenerationChatTestScripts.kt
+22-22
Original file line number
Diff line number
Diff line change
@@ -101,9 +101,9 @@ val testHappyPathScript = """
101
101
}
102
102
}
103
103
104
-
${waitForElementWithTextFunction}
104
+
$waitForElementWithTextFunction
105
105
106
-
${waitAndGetElementByTextFunction}
106
+
$waitAndGetElementByTextFunction
107
107
testNavigation().catch(console.error);
108
108
""".trimIndent()
109
109
@@ -146,9 +146,9 @@ async function testNavigation() {
146
146
}
147
147
}
148
148
149
-
${waitForElementWithTextFunction}
149
+
$waitForElementWithTextFunction
150
150
151
-
${waitAndGetElementByTextFunction}
151
+
$waitAndGetElementByTextFunction
152
152
testNavigation().catch(console.error);
153
153
""".trimIndent()
154
154
@@ -204,9 +204,9 @@ val expectedErrorPath = """
204
204
}
205
205
}
206
206
207
-
${waitForElementWithTextFunction}
207
+
$waitForElementWithTextFunction
208
208
209
-
${waitAndGetElementByTextFunction}
209
+
$waitAndGetElementByTextFunction
210
210
testNavigation().catch(console.error);
211
211
""".trimIndent()
212
212
@@ -262,9 +262,9 @@ val unsupportedLanguagePath = """
262
262
}
263
263
}
264
264
265
-
${waitForElementWithTextFunction}
265
+
$waitForElementWithTextFunction
266
266
267
-
${waitAndGetElementByTextFunction}
267
+
$waitAndGetElementByTextFunction
268
268
testNavigation().catch(console.error);
269
269
""".trimIndent()
270
270
@@ -365,9 +365,9 @@ val testRejectPathScript = """
365
365
}
366
366
}
367
367
368
-
${waitForElementWithTextFunction}
368
+
$waitForElementWithTextFunction
369
369
370
-
${waitAndGetElementByTextFunction}
370
+
$waitAndGetElementByTextFunction
371
371
372
372
testNavigation().catch(console.error);
373
373
""".trimIndent()
@@ -434,9 +434,9 @@ val testNLErrorPathScript = """
434
434
}
435
435
}
436
436
437
-
${waitForElementWithTextFunction}
437
+
$waitForElementWithTextFunction
438
438
439
-
${waitAndGetElementByTextFunction}
439
+
$waitAndGetElementByTextFunction
440
440
testNavigation().catch(console.error);
441
441
""".trimIndent()
442
442
@@ -499,9 +499,9 @@ val testProgressBarScript = """
499
499
}
500
500
}
501
501
502
-
${waitForElementWithTextFunction}
502
+
$waitForElementWithTextFunction
503
503
504
-
${waitAndGetElementByTextFunction}
504
+
$waitAndGetElementByTextFunction
505
505
506
506
testNavigation().catch(console.error);
507
507
""".trimIndent()
@@ -608,9 +608,9 @@ val testCancelButtonScript = """
608
608
}
609
609
}
610
610
611
-
${waitForElementWithTextFunction}
611
+
$waitForElementWithTextFunction
612
612
613
-
${waitAndGetElementByTextFunction}
613
+
$waitAndGetElementByTextFunction
614
614
testNavigation().catch(console.error);
615
615
""".trimIndent()
616
616
@@ -692,9 +692,9 @@ val testDocumentationErrorScript = """
692
692
}
693
693
}
694
694
695
-
${waitForElementWithTextFunction}
695
+
$waitForElementWithTextFunction
696
696
697
-
${waitAndGetElementByTextFunction}
697
+
$waitAndGetElementByTextFunction
698
698
699
699
testNavigation().catch(console.error);
700
700
""".trimIndent()
@@ -776,9 +776,9 @@ val testRemoveFunctionErrorScript = """
776
776
}
777
777
}
778
778
779
-
${waitForElementWithTextFunction}
779
+
$waitForElementWithTextFunction
780
780
781
-
${waitAndGetElementByTextFunction}
781
+
$waitAndGetElementByTextFunction
782
782
783
783
testNavigation().catch(console.error);
784
784
""".trimIndent()
@@ -860,9 +860,9 @@ val testMethodNotFoundErrorScript = """
0 commit comments