mlison / protractor-jasmine2-screenshot-reporter

Protractor screenshot reporter for Jasmine2
https://www.npmjs.com/package/protractor-jasmine2-screenshot-reporter
MIT License
81 stars 79 forks source link

Is there any way to send protractor html report to email address ? #108

Closed AlaKarim closed 7 years ago

AlaKarim commented 7 years ago

Currently, i am using "protractor-jasmine2-screenshot-reporter" to generate a summary report and create a screenshot but unable to send generated report to any email address. Is there any way exist then please help me out

Thanks

mlison commented 7 years ago

Sorry this is outside of scope of this project.

That being said, the solution to your problem depends on your workflow. If you're, for example, using any task runners like Gulp you can try plugins like gulp-email. Or your CI server can probably "publish" build artifacts using an email client. There's plenty different ways how to do this.

In principle, what you're after can be done, but you'll have to do some orchestration around it. You generate the report in one step, and send the email in the next step of the process by whatever means are available to you.

AlaKarim commented 7 years ago

Thanks alot