Status: New
Owner: ----
Labels: Type-Enhancement Priority-Medium

New issue 879 by [email protected]: Add new property for keyword "transparent" and "invisible"
http://code.google.com/p/robotframework/issues/detail?id=879

Keywords with transparent property would not be visible in log file. Content of this keyword node would not be changed, but will be placed directly level above.

*** Test Cases ***
Info
    Transparent

*** Keywords ***
Transparent
    [Property]  transparent
    Log Variables

Would be presented in log file like.


*** Test Cases ***
Info
    Log Variables


property "invisible", would hide keyword entirely with content also

*** Test Cases ***
Info
    Invisible
    Log  test  WARN

*** Keywords ***
Invisible
    [Property]  invisible
    Log Variables


Would be presented in log file like
*** Test Cases ***
Info
    Log  test  WARN


Following changes will not affect functionality at all, but could reduce size of log file and also improve readability of logs.





Reply via email to