StrikekitStrikekit

Qualifiers

Keywords that complete a command — with, on, by …, be enabled, and more

Qualifiers sit after the command and shape what the step does. They are reserved outside quotes.

Categories

How they fit together

When I fill "username" with "chamodh"
When I click on "Login"
When I click on "Security" by aria-label
Then I should have "username" value "chamodh" be enabled
When I generate "@guest" as email domain "myapp.test"
PieceExampleRole
Commandfill, click, should, generateWhat to do
Qualifierwith, on, have, by aria-label, domainHow / where / assert shape
Quoted value"username", "chamodh"Labels and payloads

Match vs payload

After variables resolve, * in a match/lookup string is a glob. In a payload string it stays literal.

RoleExamples* meaning
Match / lookupclick on "Save*", fill target, should see "Welcome*"Glob — exactly one visible match for labels
Payload / literalfill … with "a*b", navigate to, option textLiteral *

On this page