How do I test if my Squish test is doing what it is supposed to do?
Solved
Squish
-
How do I test if my Squish test is doing what it is supposed to do?
-
@SquishHammer
I think by now you realised you talk to other users -
To test the effect, you need to add synchronization and verification. For example, if a button X appears (and is enabled and ready for interaction) after clicking button A, then, after letting the script click on button A, you could use waitForObject() to verify that button X exists and is "ready". However, this kind of object verification is implicit when you record a click on button A, then on button X, because Squish records waitForObject() (and the like) calls for mouse clicks automatically.
-