How to edit reporting step names

Hi,

How can we configure the reporting step names/test names instead of FindBy Elements, Device Action can we name them more specific like -
E.g. Login - Clicking on a submit button. etc?

Is there a possibility to configure reporting in AS?

Can you try

driver.executeScript(“client:client.report(“Custom step”, true”)

1 Like

Sure Kishore and also is there a way to group test cases as well. We are using TESTNG and I would like to have each @Test would note a test and once you expand it should provide all steps involved which could be generated through driver.executeScript as stated above. I am looking to group entire flow into test cases instead of just steps for entire suite ran.

I am completely not sure but please try

driver.executeScript(“client:client.startStepsGroup(“Login step”)”);
.
.
.
.
driver.executeScript(“client:stopStepsGroup()”);