View in #general on Slack
@lars: Hi, is there a way to suppress console output for some steps? I want to record a demo in which a password is entered. I would like to not output that step for demo. Thanks for any suggestion.
@thanh: try secret(password)
in your step. It will mask the password.
To fill in sensitive data use secret function:
I.fillField('password', secret('123456'));
@lars: Thanks a lot, worked!