Each Action in Alchemy has specific types of variables it will use. If an Action uses a variable of either the Locator or Element type the Alchemy will use the Site infrastructure to select an appropriate locator. If you want to reference an element on an Action that does not use a locator, you are going to need to extract one or more values from the locator first. For example, if you wanted to use the text from the element, using the GET action. By default, that will extract the text. Now, if there was a specific attribute from the element you wanted to checked, such as HREF, you can pass that as the fieldName to GET and that value will be extracted.
To use that value in a step, you will need to specify an Output Name on the GET step. An Output Name can be added to any step to store the result(s) of the executed step into a context variable. Then, you can reference that context variable in any steps that takes input such as your Console Action example. You can either drag the Context Variable from the data toolbox or use the #{name} format to specify it manually
aj