qaf icon indicating copy to clipboard operation
qaf copied to clipboard

Test result should display description instead of stepname in KWD scenarios

Open amitbhoraniya opened this issue 8 years ago • 0 comments

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

amitbhoraniya avatar Jan 04 '17 05:01 amitbhoraniya