Skip to content

Create components

elevaite365 provides an easy way to repeat common steps and activities. We call these components.

Components let you group common interactions into building blocks that can be dropped into any test.

Why use components

The benefit is that a test always uses the latest steps in the component. Change the steps once and every test using that component picks up the change on its next run.

Parameters

Components can also have parameters, a smart way of passing data into the component when you need the same steps with different data.

A good example is a login component, where the username and password should always be dynamic.

See it in action


Next: Create scenarios