Cypress mochawesome reporter Report - how to send report - automation

We are currently running the cypress tests on production and reports are being generated at the cypress dashboard . but my team wants me to use mochawesome reports . I have mochawesome implemented without any problem.
But I want to know how to share these HTML reports with my team :
Can I upload the HTML reports on slack channel ?
Can I automate such in a way that at the end of test run , HTML reports are sent as an email?
Can I share these HTML reports on notion?
Please suggest me what should be easiest solution to this.

Related

UiPath Bot -Can we do automation testing of Uipath bots?

I want to do the automation testing of UiPath attended and unattended bot. I am not able to identify the window dialog box getting generated from Uipath. Please advice me the tool which can identify objects and automate the UiPath bots.
With uipath 20.4 community preview release there are new exciting features to create test cases in the UiPath studio itself. refer this link here.
https://forum.uipath.com/t/testing-capabilities-in-community-orchestrator-20-4-community-preview-release/210487
however I would imagine you will be on older versions of studio, which requires you to apply other approaches. here is few ways to automate the testing for UIPath processes.
Using the Orchestrator APIs we can monitor the jobs in various ways
https://platform.uipath.com/kinooqmollho/kinoorgDefault/swagger/ui/index#/
Jobs APIs to get status of the jobs
Alerts API to get any alerts generated by the Job
RobotLogs api to get check specific logs you expect or not expect in
the jobs
Apart from this, you could build a test automation script to verify
the results of bot, directly on the applications to make sure results
you expect are showing up there.
Newevest versions of UiPath Studio already have testing built-in (Test Activity).
For full-fledged Automated Testing capabilities watch for the announcements early this year
The newest versions of UiPath Studio already have testing built-in (Test Activity).
You can also take the tutorial in https://academy.uipath.com on how the test automation works.
For running the BOT from command line you can use below syntac on CMD:
"drive:\Users\username\AppData\Local\UiPath\app-20.10.4\UiRobot.exe" -file "..\path_of\Main.xaml"
For testing, if the BOT is running or not you could send an email every few minutes so that you can remotely get the heartbeat of the BOT.

How To Automate Online Workflow?

I've tried to research this topic and found resources like selenium, but I'm not entirely sure how to do what I need.
Basically here is the workflow:
A user completes a form on our website
The form inputs get emailed to me
I login to the related database system online (it's always the same) to produce the necessary report based on there request.
I then print a PDF version of the report and email it back to them with our email template (customized based on some of their inputs on the website)
Is there a way to automate this? Maybe even run it on a server so users can get the reports even when my computer is off?
Any help would be great!
Thanks.
If you are not able to use API of the resource which gives you PDF file...
I'd go like this:
Configure Jenkins CI on a server.
When a user completes a form - send HTTP POST request to Jenkins CI for building parametrized job (using data from user).
Jenkins job runs the Selenium tests to get desired PDF file.
Using Jenkins email notification plugin send customized email with PDF file from previous step.

Cloud-based testing automation tools

I try to find a service which provides a functionality that allow me to create manual tests autmation for web-based applications in simple way with visual constructor without any coding, so it could be
simple in use without any coding on selenium or another framework tool
has option to set testing in schedule mode via the web interface to perform regression testing
has ID's validation and shows possible inconsistencies
The main point is reproduce manual tester's work without using automation scripts and do it in simple way in order to a beginner will be able to work with it.
So could anyone describe his own experience ?
There are two main options I would consider
to find a service which provides a functionality that allow me to create manual tests autmation for web-based applications in simple way
First one is BrowserStack and you can record your Selenium tests using the Selenium IDE extension for FireFox. It can export the recorded steps into your favorite language (C#, Python, ect). You can execute these recorded scripts on BrowserStack by pointing the hub URL to Browserstack's Selenium hub ‘http://hub.browserstack.com/wd/hub’ along with your username and Automate key. Your 'username' and 'automate key' can be found at Account --> Automate1, after you have logged in to your account.
I would suggest, you refer to the comprehensive documentation on BrowserStack Automate. It takes you step-by-step through the product and all its features. You can select the language you are using and get started with BrowserStack Automate. If you have any more questions, feel free to email at support#browserstack.com. They will be happy to help you out.
Second option is SauceLabs and the Selenium Builder. This is the docs that will guide you. Further more you have CI integrations for Jenkins and Bamboo.
You can use Selenium IDE to create your automated tests. With this Firefox plugin, you can record a test in your browser.
Once you're done recording, you can export the test and upload it to TestingBot. There you can specify the browsers you want to run the test on. TestingBot will then run your test across all the browsers you specified.

How to send protractor report to different emails generated using protractor-html-screenshot-reporter

I am using protractor-html-screenshot-reporter for report generation through protractor. It is providing me the html report.
But how can I send the report to different email ID's as attachment to my other team members?
Or is there any other plugin of protractor for email report generation?
It is not something I would solve on the protractor side. Delegate the task to your Continuous Integration server, e.g. jenkins or Bamboo or smth else.
Generate something your CI can understand - a test report in JUnit XML format with the help of JUnitXmlReporter from jasmine-reporters and configure your CI to send an email(s) when your tests fail.

Send status report of test cases using monkey talk

How to report errors or test cases status(PASS/FAIL) to developers using monkey talk automation tool for ios/android app testing.
Use monkeytalk with continues integration tool like jenkins