18 January 2026:


This forum is now archived and is in read-only mode. Please continue discussions on our improved new Sahi Pro Community forum.



Sahi Pro is an enterprise grade test automation platform which can automate web, mobile, API, windows and java based applications and SAP.

Sort scripts in suite log

tejas269tejas269 Members
edited January 2013 in Sahi Pro
Hi,
I a using sahi pro4.3.2. When I run a suite file, in logs the scripts are sorted alphabetically. Is there any way to sort them in the order they were run like in sahi open source?

Best Answer

  • Answer ✓
    Hi Tejas,

    Open sahi/userdata/config/reports/html/suite_report.xsl

    Search for
    <xsl:for-each select="summary">
    

    and replace it with:
    <xsl:for-each select="summary">
    	<xsl:sort select="substring-after(SCRIPTREPORTID, '__')" />
    

    Refresh the reports page and check.

    Regards,
    Narayan

Answers

Sign In or Register to comment.