隐藏日志中的密码

时间:2019-03-20 09:46:36

标签: karate

以下代码:

Background:
    * url "https://www.google.fr"

    Scenario: hide password
        Given path "login"
        And form field username = 'john'
        And form field password = 'secret'
        When method post
        Then status 200

给出以下输出:

10:38:34.710 request:
1 > POST https://www.google.fr/login
1 > Accept-Encoding: gzip,deflate
1 > Connection: Keep-Alive
1 > Content-Length: 29
1 > Content-Type: application/x-www-form-urlencoded; charset=UTF-8
1 > Host: www.google.fr
1 > User-Agent: Apache-HttpClient/4.5.5 (Java/1.8.0_191)
username=john&password=secret

有没有办法在这里将密码隐藏,同时将日志保持在DEBUG级别?如果那也意味着隐藏用户名,那不是问题。

1 个答案:

答案 0 :(得分:1)

如果* configure report = { showLog: false }尚未这样做,这可能是一个功能请求。