I need to hide sensitive data like password from extent report to share report to client which is configured with cucumber BDD framework selenium JAVA. Can anyone please help me is there any way the sensitive data like password and secret from Given data table displayed from extent report is hidden ?
Example:-
Feature: User Creation
Scenario Outline: Admin user create new user
Given user enter details
| name | email | secret |
| Aslak | aslak@test.com | Test123 |
When admin user create new user with "<username>" and "<password>"
Then user should be created
Examples:
| username | password |
| aman | Password@1 |
Need to hide the password and secret from the extent report while sharing to the team.