Skip to content

Version 1.16.x

Compare
Choose a tag to compare
@giulong giulong released this 07 Nov 20:53
· 118 commits to develop since this release

Hide Sensitive Data in Reports and Logs

You can now annotate sensitive WebElements with the @Secured annotation like this:

import io.github.giulong.spectrum.interfaces.Secured;

@FindBy(id = "password")
@Secured
private WebElement password;

This will ensure no password will be logged in plain text nor it will be added to the reports.
More on this in the Secured WebElements docs