Some onboarding steps depend on an action the user performs inside your product. A common example is a textarea. The flow explains what to write, the user enters a value, and the next step should point to a checkbox or another control on the same page. The right tool for this is a step trigger. The trigger watches the input while the current step is showing, then moves the flow forward when the user has filled it in.Documentation Index
Fetch the complete documentation index at: https://docs.usertour.io/llms.txt
Use this file to discover all available pages before exploring further.
Scenario
Suppose the first step asks the user to describe their setup in a textarea. The next step should explain a checkbox that only makes sense after the textarea has been filled.Configure The Trigger
Open the step that asks the user to type, then add a trigger to that step. Select the input element the user should fill. In this example, the selected element is#setup-notes.
Use this configuration:

#setup-notes receives a new non-empty value and the user pauses, the trigger runs the Go to Step action.
Why This Works
A step trigger belongs to the current step. It watches conditions while that step is being shown. When those conditions match, it performs the configured action. For this use case, the condition is User fills in input. Usertour selects the configured element, listens for input changes, and treats the field as filled only after the value has changed from its original state and is no longer empty. The action is Go to Step. When the condition becomes true, Usertour shows the selected next step. In this case, that next step is the one that points to the checkbox. The result is a flow that follows the user’s work instead of asking the user to confirm something they have already done.When To Use This Pattern
Use this pattern when one step should continue after the user completes a field on the page. Good examples include:- A textarea where the user writes a description.
- A name field that must be filled before the next instruction.
- A search box where the next step explains how to choose a result.
- A form field that appears inside your own product, not inside the Usertour tooltip.