I am completely new to angular protractor testing. I have created some test cases using the protractor framework with jasmine runner BDD style. Within a single test class, I have 10 to 12 specs, each with an expectation. Currently, I am running these tests on a selenium server directly. However, I am now considering saving these test cases in a database. My plan is to create a table for tests, with columns such as Test number, Test name, specs, and pass or fail status.
Below is an example of my code:
This class contains 10 specs
describe('03 check all user report settings', function () {
// Specs go here...
})
The output from the test report is as follows:
Report summary goes here...
My Configuration file looks like this:
Config details here...
Now, my question is how can I best store this report in a database using a table structure? Any suggestions would be greatly appreciated.