I want to check if after some actions, a window is opened. The window name is "Help - Test". Below is my code:
with [get-window "Help - Test"] {
get-property "isEnabled()" | equals true | verify-true
get-property "isVisible()" | equals true | verify-true
}
when running the test I get error The Window "Help - Test" could not be found.
Also I tested the Eclipse help to check that the help menu is opened after Tips and Tricks and same problem:
Note: I want to check that the help menu from eclipse is opened.