Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
完成后如何通过邮件自动发送 TestNG 可通过电子邮件发送的报告。
我有发送电子邮件的逻辑,但是在完成测试套件执行后该电子邮件没有触发。请帮我解释一下逻辑
我使用了 IReporter 侦听器,但仍然无法通过电子邮件发送最新报告,因为可发送电子邮件的报告未刷新。因此,在将其发送给用户之前,我正在使用下面打开可发送电子邮件的报告
java.awt.Desktop.getDesktop().browse(new URI("file:"+filename1));
filename1 是可通过电子邮件发送的报告文件。
现在我可以得到最新的了....