Power mode also supports the powerful feature of letting you create your own macros. If you have ever used a macro in Excel or other applications, this works in a similar way. It simply records user actions and will then replay them when requested.
I find this useful for precondition and navigation steps during testing. For example, many tests assume that you are already logged into an application before doing the action that needs to be tested. You can do this by doing a call to test within your test or by using the login test in the test set. Either way you choose, you will be actually running the login test, which means you're going to be giving a pass/fail to that login test that really has nothing to do with the test case.
But macros give us the ability to perform the login without actually testing it. The first time you run the test you can record/ capture the keystrokes into a macro. The macro is then available the next time testing needs to be done.
But be aware that the macro will not pass or fail the test. If the macro doesn’t work correctly, you will still have to do those steps manually. Macros are a useful shortcut that I use a lot, but you need to remember they have no pass/fail effect. You need to be sure that those actions for which you have recorded a macro have already been tested.