1

成功完成(执行)构建(通过/失败)后,我能够生成 XSLT 报告。我想将此报告通过电子邮件发送到 Excel 表中提到的电子邮件地址。电子邮件地址不多,但它们是固定的,即只有一组特定的电子邮件地址会收到此报告。我需要编写一个目标,我将从终端通过 ant 命令调用它来发送报告。

<target name="run"> 

            <antcall target="clean" />

            <antcall target="init" />
            <antcall target="compile" />

            <antcall target="runTests" />
            <!-- <antcall target ="makeXsltReports"/> -->

            <antcall target ="testng-xslt-report"/>
            <antcall target="openReport" />
            <Fetch the excel sheet's cell one >> get the email address >> send the email.

</target>
4