qaf
qaf copied to clipboard
Test result should display description instead of stepname in KWD scenarios
In kwd scenarios currently it displays stepname in resport instead of formatted description. For example,
SCENARIO|GoogleSearch|{"description":"Search Google","groups":["P1","SMOKE"]}
get|["http://www.google.com"]|
sendKeys|["qmetry","txt.search.loc"]|
click|["btn.search.loc"]|
verifyLinkWithPartialTextPresent|["qmetry"]|
END||
Currently steps displays in report is
get
sendKeys
click
verifyLinkWithPartialTextPresent
which is not readable as bdd scenarios, and user cannot see any arguments here.
It should be like this.
get 'http://www.google.com'
sendKeys 'qmetry' into 'Search Input'
click on 'Search Button'
verify link with partial text 'qmetry' is present