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: src/test/robotframework/acceptance/MiscTests.robot
+3-3
Original file line number
Diff line number
Diff line change
@@ -15,15 +15,15 @@ ${CURRENT_APPLICATION} NOT SET
15
15
Find Id That Does Not Exist
16
16
[Tags] negative smoke
17
17
Set Test Application javafxlibrary.testapps.TestBoundsLocation
18
-
${MSG} Run Keyword And Expect Error * Find id=idThatDoesNotExist failIfNotFound=True
18
+
${MSG} Run Keyword And Expect Error * Find id=idThatDoesNotExist ${True} # TODO: failIfNotFound=True
19
19
Should Be Equal ${MSG} Unable to find anything with query: "id=idThatDoesNotExist" msg=Find does not fail with expected error message when query not found
20
-
${MSG} Run Keyword Find id=idThatDoesNotExist failIfNotFound=False
20
+
${MSG} Run Keyword Find id=idThatDoesNotExist ${False} # TODO: failIfNotFound=False
21
21
Should Be Equal ${MSG}${EMPTY} msg=Find does not return None value when query not found
22
22
23
23
Find All With Wrong Style Class
24
24
[Tags] negative smoke
25
25
Set Test Application javafxlibrary.testapps.TestBoundsLocation
26
-
${MSG} Run Keyword And Expect Error * Find All css=.thisIsNotAStyleClass failIfNotFound=True
26
+
${MSG} Run Keyword And Expect Error * Find All css=.thisIsNotAStyleClass ${True} # TODO: failIfNotFound=True
27
27
Should Be Equal ${MSG} Unable to find anything with query: "css=.thisIsNotAStyleClass"
0 commit comments