cypress_task 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (80) hide show
  1. package/.github/workflows/cyemial.yaml +98 -0
  2. package/Daily_Tracker.xlsx +0 -0
  3. package/Mannual_testcases.xlsx +0 -0
  4. package/clean_mochawesome.js +26 -0
  5. package/cleanupOutput.js +16 -0
  6. package/cleanupReports.js +15 -0
  7. package/cypress/e2e/Cart_Testcases/07_verify_Adding_single_item_to_cart.cy.js +40 -0
  8. package/cypress/e2e/Cart_Testcases/08_verify_removing_item_from_the_cart.cy.js +55 -0
  9. package/cypress/e2e/Cart_Testcases/09_verify_updating_of_cart_after_adding_multiple_item.cy.js +75 -0
  10. package/cypress/e2e/Checkout_Testcases/04_verify_complete_successful_purchase_of_single_item.cy.js +83 -0
  11. package/cypress/e2e/Checkout_Testcases/05_verify_checkout_with_missing_firstname_fails.cy.js +78 -0
  12. package/cypress/e2e/Checkout_Testcases/06_verify_user_can_cancel_checkout_and redirected_to_cart.cy.js +79 -0
  13. package/cypress/e2e/Login_Testcases/01_Verify_Valid_Login.cy.js +30 -0
  14. package/cypress/e2e/Login_Testcases/02_Verify_Invalid_Login_by_wrong_password.cy.js +29 -0
  15. package/cypress/e2e/Login_Testcases/03_Verify_Lockout_user_failed_login.cy.js +30 -0
  16. package/cypress/e2e/Regression_Suit/10_Verify_successful_purchase_multiple_items.cy.js +98 -0
  17. package/cypress/e2e/Regression_Suit/11_testfail.cy.js +98 -0
  18. package/cypress/e2e/Smoke_Suit/SMK001_Verify user can log in with valid credentials.cy.js +32 -0
  19. package/cypress/e2e/Smoke_Suit/SMK002_Verify product list loads after login.cy.js +34 -0
  20. package/cypress/e2e/Smoke_Suit/SMK003_Verify user can add a product to cart.cy.js +49 -0
  21. package/cypress/failed-specs.json +3 -0
  22. package/cypress/fixtures/Cart/01_Adding_product_to_cart.json +6 -0
  23. package/cypress/fixtures/Cart/02_Removing_product_from_cart.json +6 -0
  24. package/cypress/fixtures/Cart/03_Updating_of_cart_icon.json +7 -0
  25. package/cypress/fixtures/Checkout/01_purchase_of_single_product.json +10 -0
  26. package/cypress/fixtures/Checkout/02_missing_info_fail_purchase.json +8 -0
  27. package/cypress/fixtures/Checkout/03_cancel_purcahse_redirect_to_cart.json +9 -0
  28. package/cypress/fixtures/Login_Data/01_Valid_login.json +5 -0
  29. package/cypress/fixtures/Login_Data/02_Invalid_Login.json +6 -0
  30. package/cypress/fixtures/Login_Data/03_Lockout_user.json +6 -0
  31. package/cypress/fixtures/regression_data/01_regression_data.json +12 -0
  32. package/cypress/fixtures/smoke_test_data/SMK001_Verify user can log in with valid credentials.json +5 -0
  33. package/cypress/fixtures/smoke_test_data/SMK002_Verify product list loads after login.json +6 -0
  34. package/cypress/fixtures/smoke_test_data/SMK003_Verify user can add a product to cart.json +6 -0
  35. package/cypress/results/fail_2025-12-19T160847+0530-11_testfail.json +110 -0
  36. package/cypress/results/fail_2025-12-19T160936+0530-11_testfail.json +110 -0
  37. package/cypress/results/pass_2025-12-19T160750+0530-04_verify_complete_successful_purchase_of_single_item.json +106 -0
  38. package/cypress/results/pass_2025-12-19T160756+0530-05_verify_checkout_with_missing_firstname_fails.json +106 -0
  39. package/cypress/results/pass_2025-12-19T160802+0530-06_verify_user_can_cancel_checkout_and redirected_to_cart.json +106 -0
  40. package/cypress/results/pass_2025-12-19T160806+0530-07_verify_Adding_single_item_to_cart.json +106 -0
  41. package/cypress/results/pass_2025-12-19T160809+0530-08_verify_removing_item_from_the_cart.json +106 -0
  42. package/cypress/results/pass_2025-12-19T160814+0530-09_verify_updating_of_cart_after_adding_multiple_item.json +106 -0
  43. package/cypress/results/pass_2025-12-19T160822+0530-10_Verify_successful_purchase_multiple_items.json +106 -0
  44. package/cypress/results/pass_2025-12-19T160850+0530-SMK001_Verify user can log in with valid credentials.json +106 -0
  45. package/cypress/results/pass_2025-12-19T160854+0530-SMK002_Verify product list loads after login.json +106 -0
  46. package/cypress/results/pass_2025-12-19T160857+0530-SMK003_Verify user can add a product to cart.json +106 -0
  47. package/cypress/results/pass_2025-12-19T160900+0530-01_Verify_Valid_Login.json +106 -0
  48. package/cypress/results/pass_2025-12-19T160903+0530-02_Verify_Invalid_Login_by_wrong_password.json +106 -0
  49. package/cypress/results/pass_2025-12-19T160905+0530-03_Verify_Lockout_user_failed_login.json +106 -0
  50. package/cypress/screenshots/11_testfail.cy.js/11_failed -- 02_failed (failed) (attempt 2).png +0 -0
  51. package/cypress/screenshots/11_testfail.cy.js/11_failed -- 02_failed (failed).png +0 -0
  52. package/cypress/support/Locators/Common_Locators.js +57 -0
  53. package/cypress/support/commands.js +25 -0
  54. package/cypress/support/e2e.js +43 -0
  55. package/cypress/support/encryption.js +45 -0
  56. package/cypress/support/env.js +31 -0
  57. package/cypress/support/interface.js +6 -0
  58. package/cypress/support/pageObjects/CartPage.js +56 -0
  59. package/cypress/support/pageObjects/CheckoutPage.js +111 -0
  60. package/cypress/support/pageObjects/GenerateRandomData.js +62 -0
  61. package/cypress/support/pageObjects/Homepage.js +92 -0
  62. package/cypress/support/pageObjects/navigationPage.js +44 -0
  63. package/cypress.config.js +44 -0
  64. package/mochawesome-report/assets/MaterialIcons-Regular.woff +0 -0
  65. package/mochawesome-report/assets/MaterialIcons-Regular.woff2 +0 -0
  66. package/mochawesome-report/assets/app.css +14 -0
  67. package/mochawesome-report/assets/app.js +2 -0
  68. package/mochawesome-report/assets/app.js.LICENSE.txt +55 -0
  69. package/mochawesome-report/assets/roboto-light-webfont.woff +0 -0
  70. package/mochawesome-report/assets/roboto-light-webfont.woff2 +0 -0
  71. package/mochawesome-report/assets/roboto-medium-webfont.woff +0 -0
  72. package/mochawesome-report/assets/roboto-medium-webfont.woff2 +0 -0
  73. package/mochawesome-report/assets/roboto-regular-webfont.woff +0 -0
  74. package/mochawesome-report/assets/roboto-regular-webfont.woff2 +0 -0
  75. package/mochawesome-report/output.html +2 -0
  76. package/output.json +864 -0
  77. package/package.json +43 -0
  78. package/run-parallel-cypress.js +57 -0
  79. package/runAllSteps.js +47 -0
  80. package/syncTestResultsToExcel.js +219 -0
package/output.json ADDED
@@ -0,0 +1,864 @@
1
+ {
2
+ "stats": {
3
+ "suites": 14,
4
+ "tests": 14,
5
+ "passes": 13,
6
+ "pending": 0,
7
+ "failures": 1,
8
+ "testsRegistered": 14,
9
+ "passPercent": 92.85714285714286,
10
+ "pendingPercent": 0,
11
+ "other": 0,
12
+ "hasOther": false,
13
+ "skipped": 0,
14
+ "hasSkipped": false,
15
+ "start": "2025-12-19T10:37:43.723Z",
16
+ "end": "2025-12-19T10:39:05.830Z",
17
+ "duration": 82107
18
+ },
19
+ "results": [
20
+ {
21
+ "uuid": "b6f737f5-b68d-4d25-b9d5-96e575b602d0",
22
+ "title": "",
23
+ "fullFile": "cypress\\e2e\\Regression_Suit\\11_testfail.cy.js",
24
+ "file": "cypress\\e2e\\Regression_Suit\\11_testfail.cy.js",
25
+ "beforeHooks": [],
26
+ "afterHooks": [],
27
+ "tests": [],
28
+ "suites": [
29
+ {
30
+ "uuid": "39a7b1c2-3b15-4f65-af5b-66504b2f4546",
31
+ "title": "11_failed",
32
+ "fullFile": "",
33
+ "file": "",
34
+ "beforeHooks": [],
35
+ "afterHooks": [],
36
+ "tests": [
37
+ {
38
+ "title": "02_failed",
39
+ "fullTitle": "11_failed 02_failed",
40
+ "timedOut": null,
41
+ "duration": 11381,
42
+ "state": "failed",
43
+ "speed": null,
44
+ "pass": false,
45
+ "fail": true,
46
+ "pending": false,
47
+ "context": null,
48
+ "code": "//verify the no item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(0);\n//add Sauce Labs Bike Light in the cart\n_Homepage.homepage.AddingItemtoCart(\"123\");\n//verify the item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(1);\ncy.wait(1000);\n//add Sauce Labs Backpack in the cart\n_Homepage.homepage.AddingItemtoCart(Bagpack);\n//verify the item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(2);\n//click on the cart icon \n_Homepage.homepage.ClickonCartBtn();\n//verify the product is added in to the cart \n_CartPage.cartpage.verifytheCartpageOpened();\n//verify the item is added to the cart \n_CartPage.cartpage.VerifyAddedItemtoCart(Bike_light);\n//verify the item is added to the cart \n_CartPage.cartpage.VerifyAddedItemtoCart(Bagpack);\n//verify the item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(2);\n//click on checkout button\n_CartPage.cartpage.clickOnCheckoutButton();\n//verify checkout page open\n_CheckoutPage.checkout_page.verifytheCheckoutpageOpened();\n//enter your information for checkout\n_CheckoutPage.checkout_page.enterDetailsforCheckout(checkout_Info_Parameter);\n//verify the item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(2);\n//click on Continue button\n_CheckoutPage.checkout_page.clickOnContinueButton();\n//verify the item is added to the cart \n_CheckoutPage.checkout_page.VerifyProductNameAndPriceInFinalStep(Bike_light, Price_Item_1);\n//verify the item is added to the cart \n_CheckoutPage.checkout_page.VerifyProductNameAndPriceInFinalStep(Bagpack, Price_Item_2);\n//verify total Price to pay after tax\n_CheckoutPage.checkout_page.verifyTotalPriceToPay();\n//click on Finish Button\n_CheckoutPage.checkout_page.clickOnFinishButton();\n//verify Purchase was successful\n_CheckoutPage.checkout_page.VerifyPurchase_Success();\n//verify the item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(0);",
49
+ "err": {
50
+ "message": "AssertionError: Timed out retrying after 10000ms: Expected to find element: `[id=\"shopping_cart_container\"] span`, but never found it.",
51
+ "estack": "AssertionError: Timed out retrying after 10000ms: Expected to find element: `[id=\"shopping_cart_container\"] span`, but never found it.\n at Homepage.verifyCartIconQuantity (webpack://cypress_task/./cypress/support/pageObjects/Homepage.js:31:96)\n at Context.eval (webpack://cypress_task/./cypress/e2e/Regression_Suit/11_testfail.cy.js:53:17)",
52
+ "diff": null
53
+ },
54
+ "uuid": "bc660760-c2f0-4692-914b-62db3a076f93",
55
+ "parentUUID": "39a7b1c2-3b15-4f65-af5b-66504b2f4546",
56
+ "isHook": false,
57
+ "skipped": false
58
+ }
59
+ ],
60
+ "suites": [],
61
+ "passes": [],
62
+ "failures": [
63
+ "bc660760-c2f0-4692-914b-62db3a076f93"
64
+ ],
65
+ "pending": [],
66
+ "skipped": [],
67
+ "duration": 11381,
68
+ "root": false,
69
+ "rootEmpty": false,
70
+ "_timeout": 2000
71
+ }
72
+ ],
73
+ "passes": [],
74
+ "failures": [],
75
+ "pending": [],
76
+ "skipped": [],
77
+ "duration": 0,
78
+ "root": true,
79
+ "rootEmpty": true,
80
+ "_timeout": 2000
81
+ },
82
+ {
83
+ "uuid": "3d2f2791-a537-4721-bf10-73e0552215c6",
84
+ "title": "",
85
+ "fullFile": "cypress\\e2e\\Checkout_Testcases\\04_verify_complete_successful_purchase_of_single_item.cy.js",
86
+ "file": "cypress\\e2e\\Checkout_Testcases\\04_verify_complete_successful_purchase_of_single_item.cy.js",
87
+ "beforeHooks": [],
88
+ "afterHooks": [],
89
+ "tests": [],
90
+ "suites": [
91
+ {
92
+ "uuid": "c6486baf-608d-4b01-99ce-da48193ef957",
93
+ "title": "04_verify_complete_successful_purchase_of_single_item",
94
+ "fullFile": "",
95
+ "file": "",
96
+ "beforeHooks": [],
97
+ "afterHooks": [],
98
+ "tests": [
99
+ {
100
+ "title": "01_verify_complete_successful_purchase_of_single_item",
101
+ "fullTitle": "04_verify_complete_successful_purchase_of_single_item 01_verify_complete_successful_purchase_of_single_item",
102
+ "timedOut": null,
103
+ "duration": 5257,
104
+ "state": "passed",
105
+ "speed": "medium",
106
+ "pass": true,
107
+ "fail": false,
108
+ "pending": false,
109
+ "context": null,
110
+ "code": "//verify the no item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(0);\n//add Sauce Labs Bike Light in the cart\n_Homepage.homepage.AddingItemtoCart(Bike_light);\n//click on the cart icon \n_Homepage.homepage.ClickonCartBtn();\n//verify the product is added in to the cart \n_CartPage.cartpage.verifytheCartpageOpened();\n//verify the item is added to the cart \n_CartPage.cartpage.VerifyAddedItemtoCart(Bike_light);\n//verify the item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(1);\n//click on checkout button\n_CartPage.cartpage.clickOnCheckoutButton();\n//verify checkout page open\n_CheckoutPage.checkout_page.verifytheCheckoutpageOpened();\n//enter your information for checkout\n_CheckoutPage.checkout_page.enterDetailsforCheckout(checkout_Info_Parameter);\n//verify the item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(1);\n//click on Continue button\n_CheckoutPage.checkout_page.clickOnContinueButton();\n//verify the item is added to the cart \n_CheckoutPage.checkout_page.VerifyProductNameAndPriceInFinalStep(Bike_light, Price);\n//verify total Price to pay after tax\n_CheckoutPage.checkout_page.verifyTotalPriceToPay();\n//click on Finish Button\n_CheckoutPage.checkout_page.clickOnFinishButton();\n//verify Purchase was successful\n_CheckoutPage.checkout_page.VerifyPurchase_Success();\n//verify the item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(0);",
111
+ "err": {},
112
+ "uuid": "938eeaa9-f47e-4290-997e-c8eb50722b36",
113
+ "parentUUID": "c6486baf-608d-4b01-99ce-da48193ef957",
114
+ "isHook": false,
115
+ "skipped": false
116
+ }
117
+ ],
118
+ "suites": [],
119
+ "passes": [
120
+ "938eeaa9-f47e-4290-997e-c8eb50722b36"
121
+ ],
122
+ "failures": [],
123
+ "pending": [],
124
+ "skipped": [],
125
+ "duration": 5257,
126
+ "root": false,
127
+ "rootEmpty": false,
128
+ "_timeout": 2000
129
+ }
130
+ ],
131
+ "passes": [],
132
+ "failures": [],
133
+ "pending": [],
134
+ "skipped": [],
135
+ "duration": 0,
136
+ "root": true,
137
+ "rootEmpty": true,
138
+ "_timeout": 2000
139
+ },
140
+ {
141
+ "uuid": "662c941f-dd92-413e-9b5c-0d235503dbb5",
142
+ "title": "",
143
+ "fullFile": "cypress\\e2e\\Checkout_Testcases\\05_verify_checkout_with_missing_firstname_fails.cy.js",
144
+ "file": "cypress\\e2e\\Checkout_Testcases\\05_verify_checkout_with_missing_firstname_fails.cy.js",
145
+ "beforeHooks": [],
146
+ "afterHooks": [],
147
+ "tests": [],
148
+ "suites": [
149
+ {
150
+ "uuid": "05fdc87d-d1f7-47d2-8c7f-237990ed23aa",
151
+ "title": "05_verify_checkout_with_missing_firstname_fails.cy.js",
152
+ "fullFile": "",
153
+ "file": "",
154
+ "beforeHooks": [],
155
+ "afterHooks": [],
156
+ "tests": [
157
+ {
158
+ "title": "02_verify_checkout_with_missing_firstname_fails.cy.js",
159
+ "fullTitle": "05_verify_checkout_with_missing_firstname_fails.cy.js 02_verify_checkout_with_missing_firstname_fails.cy.js",
160
+ "timedOut": null,
161
+ "duration": 3222,
162
+ "state": "passed",
163
+ "speed": "fast",
164
+ "pass": true,
165
+ "fail": false,
166
+ "pending": false,
167
+ "context": null,
168
+ "code": "//verify the no item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(0);\n//add Sauce Labs Bike Light in the cart\n_Homepage.homepage.AddingItemtoCart(Bike_light);\n//click on the cart icon \n_Homepage.homepage.ClickonCartBtn();\n//verify the product is added in to the cart \n_CartPage.cartpage.verifytheCartpageOpened();\n//verify the item is added to the cart \n_CartPage.cartpage.VerifyAddedItemtoCart(Bike_light);\n//verify the item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(1);\n//click on checkout button\n_CartPage.cartpage.clickOnCheckoutButton();\n//verify checkout page open\n_CheckoutPage.checkout_page.verifytheCheckoutpageOpened();\n//enter your information for checkout\n_CheckoutPage.checkout_page.enterDetailsforCheckout(checkout_Info_Parameter);\n//verify the item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(1);\n//click on Continue button\n_CheckoutPage.checkout_page.clickOnContinueButton();\n//verify error is displayed \n_CheckoutPage.checkout_page.VerifyError_Pop_up();\n//verify Item Still added to cart \n_Homepage.homepage.verifyCartIconQuantity(1);\n//verify still on checkout page \n_CheckoutPage.checkout_page.verifytheCheckoutpageOpened();",
169
+ "err": {},
170
+ "uuid": "b5c9775c-5098-4c74-9d45-96a2ad7361b3",
171
+ "parentUUID": "05fdc87d-d1f7-47d2-8c7f-237990ed23aa",
172
+ "isHook": false,
173
+ "skipped": false
174
+ }
175
+ ],
176
+ "suites": [],
177
+ "passes": [
178
+ "b5c9775c-5098-4c74-9d45-96a2ad7361b3"
179
+ ],
180
+ "failures": [],
181
+ "pending": [],
182
+ "skipped": [],
183
+ "duration": 3222,
184
+ "root": false,
185
+ "rootEmpty": false,
186
+ "_timeout": 2000
187
+ }
188
+ ],
189
+ "passes": [],
190
+ "failures": [],
191
+ "pending": [],
192
+ "skipped": [],
193
+ "duration": 0,
194
+ "root": true,
195
+ "rootEmpty": true,
196
+ "_timeout": 2000
197
+ },
198
+ {
199
+ "uuid": "d7ca4cad-aaa5-4e91-9c46-13a0a79ec3dd",
200
+ "title": "",
201
+ "fullFile": "cypress\\e2e\\Checkout_Testcases\\06_verify_user_can_cancel_checkout_and redirected_to_cart.cy.js",
202
+ "file": "cypress\\e2e\\Checkout_Testcases\\06_verify_user_can_cancel_checkout_and redirected_to_cart.cy.js",
203
+ "beforeHooks": [],
204
+ "afterHooks": [],
205
+ "tests": [],
206
+ "suites": [
207
+ {
208
+ "uuid": "51141933-379a-4a03-9360-cd8417387b1c",
209
+ "title": "06_verify_user_can_cancel_checkout_and redirected_to_cart.cy.js",
210
+ "fullFile": "",
211
+ "file": "",
212
+ "beforeHooks": [],
213
+ "afterHooks": [],
214
+ "tests": [
215
+ {
216
+ "title": "03_verify_user_can_cancel_checkout_and redirected_to_cart.cy.js",
217
+ "fullTitle": "06_verify_user_can_cancel_checkout_and redirected_to_cart.cy.js 03_verify_user_can_cancel_checkout_and redirected_to_cart.cy.js",
218
+ "timedOut": null,
219
+ "duration": 4440,
220
+ "state": "passed",
221
+ "speed": "fast",
222
+ "pass": true,
223
+ "fail": false,
224
+ "pending": false,
225
+ "context": null,
226
+ "code": "//verify the no item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(0);\n//add Sauce Labs Bike Light in the cart\n_Homepage.homepage.AddingItemtoCart(Bike_light);\n//click on the cart icon \n_Homepage.homepage.ClickonCartBtn();\n//verify the product is added in to the cart \n_CartPage.cartpage.verifytheCartpageOpened();\n//verify the item is added to the cart \n_CartPage.cartpage.VerifyAddedItemtoCart(Bike_light);\n//verify the item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(1);\n//click on checkout button\n_CartPage.cartpage.clickOnCheckoutButton();\n//verify checkout page open\n_CheckoutPage.checkout_page.verifytheCheckoutpageOpened();\n//enter your information for checkout\n_CheckoutPage.checkout_page.enterDetailsforCheckout(checkout_Info_Parameter);\n//verify the item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(1);\n//click on cancel button\n_CheckoutPage.checkout_page.clickOnCancelButton();\n//verify the product is added in to the cart \n_CartPage.cartpage.verifytheCartpageOpened();\n//verify the item is added to the cart \n_CartPage.cartpage.VerifyAddedItemtoCart(Bike_light);\n//verify the item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(1);",
227
+ "err": {},
228
+ "uuid": "e4b70423-ab93-487a-b6ad-08b3f3681dd0",
229
+ "parentUUID": "51141933-379a-4a03-9360-cd8417387b1c",
230
+ "isHook": false,
231
+ "skipped": false
232
+ }
233
+ ],
234
+ "suites": [],
235
+ "passes": [
236
+ "e4b70423-ab93-487a-b6ad-08b3f3681dd0"
237
+ ],
238
+ "failures": [],
239
+ "pending": [],
240
+ "skipped": [],
241
+ "duration": 4440,
242
+ "root": false,
243
+ "rootEmpty": false,
244
+ "_timeout": 2000
245
+ }
246
+ ],
247
+ "passes": [],
248
+ "failures": [],
249
+ "pending": [],
250
+ "skipped": [],
251
+ "duration": 0,
252
+ "root": true,
253
+ "rootEmpty": true,
254
+ "_timeout": 2000
255
+ },
256
+ {
257
+ "uuid": "db5e21ea-fd6b-4bc5-98e8-8901cc729978",
258
+ "title": "",
259
+ "fullFile": "cypress\\e2e\\Cart_Testcases\\07_verify_Adding_single_item_to_cart.cy.js",
260
+ "file": "cypress\\e2e\\Cart_Testcases\\07_verify_Adding_single_item_to_cart.cy.js",
261
+ "beforeHooks": [],
262
+ "afterHooks": [],
263
+ "tests": [],
264
+ "suites": [
265
+ {
266
+ "uuid": "743366b4-014d-4a63-b9f8-55279679de4c",
267
+ "title": "07_verify_Adding_single_item_to_cart",
268
+ "fullFile": "",
269
+ "file": "",
270
+ "beforeHooks": [],
271
+ "afterHooks": [],
272
+ "tests": [
273
+ {
274
+ "title": "01_verify_Adding_single_item_to_cart",
275
+ "fullTitle": "07_verify_Adding_single_item_to_cart 01_verify_Adding_single_item_to_cart",
276
+ "timedOut": null,
277
+ "duration": 1727,
278
+ "state": "passed",
279
+ "speed": "fast",
280
+ "pass": true,
281
+ "fail": false,
282
+ "pending": false,
283
+ "context": null,
284
+ "code": "//add Sauce Labs Backpack in the cart\n_Homepage.homepage.AddingItemtoCart(Bagpack);\n//verify the item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(1);\n//verify remove item button is visible for the same product\n_Homepage.homepage.verifyRemovefromCartButton(Bagpack);",
285
+ "err": {},
286
+ "uuid": "1c93b5fb-530b-4f31-8374-045c6a1b9d22",
287
+ "parentUUID": "743366b4-014d-4a63-b9f8-55279679de4c",
288
+ "isHook": false,
289
+ "skipped": false
290
+ }
291
+ ],
292
+ "suites": [],
293
+ "passes": [
294
+ "1c93b5fb-530b-4f31-8374-045c6a1b9d22"
295
+ ],
296
+ "failures": [],
297
+ "pending": [],
298
+ "skipped": [],
299
+ "duration": 1727,
300
+ "root": false,
301
+ "rootEmpty": false,
302
+ "_timeout": 2000
303
+ }
304
+ ],
305
+ "passes": [],
306
+ "failures": [],
307
+ "pending": [],
308
+ "skipped": [],
309
+ "duration": 0,
310
+ "root": true,
311
+ "rootEmpty": true,
312
+ "_timeout": 2000
313
+ },
314
+ {
315
+ "uuid": "bfe48408-0c15-463a-a089-3532d1d3eb55",
316
+ "title": "",
317
+ "fullFile": "cypress\\e2e\\Cart_Testcases\\08_verify_removing_item_from_the_cart.cy.js",
318
+ "file": "cypress\\e2e\\Cart_Testcases\\08_verify_removing_item_from_the_cart.cy.js",
319
+ "beforeHooks": [],
320
+ "afterHooks": [],
321
+ "tests": [],
322
+ "suites": [
323
+ {
324
+ "uuid": "1984dc69-8fe6-44b4-9e85-f25a9a95d7ec",
325
+ "title": "08_verify_removing_item_from_the_cart",
326
+ "fullFile": "",
327
+ "file": "",
328
+ "beforeHooks": [],
329
+ "afterHooks": [],
330
+ "tests": [
331
+ {
332
+ "title": "02_verify_removing_item_from_the_cart",
333
+ "fullTitle": "08_verify_removing_item_from_the_cart 02_verify_removing_item_from_the_cart",
334
+ "timedOut": null,
335
+ "duration": 1754,
336
+ "state": "passed",
337
+ "speed": "fast",
338
+ "pass": true,
339
+ "fail": false,
340
+ "pending": false,
341
+ "context": null,
342
+ "code": "//add Sauce Labs Bike Light in the cart\n_Homepage.homepage.AddingItemtoCart(Bike_light);\n//verify the item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(1);\n//verify remove item button is visible for the same product\n_Homepage.homepage.verifyRemovefromCartButton(Bike_light);\n//click on the cart icon \n_Homepage.homepage.ClickonCartBtn();\n//verify the product is added in to the cart \n_CartPage.cartpage.verifytheCartpageOpened();\n//verify the item is added to the cart \n_CartPage.cartpage.VerifyAddedItemtoCart(Bike_light);\n//verify the item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(1);\n//remove the item form the container \n_CartPage.cartpage.RemoveItemfromCart(Bike_light);\n//verify the item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(0);\n//verify no item present in the cart\n_CartPage.cartpage.VerifyAddedItemtoCart(Bike_light);",
343
+ "err": {},
344
+ "uuid": "e0e8fc4e-5c92-4577-88a4-7414849a0897",
345
+ "parentUUID": "1984dc69-8fe6-44b4-9e85-f25a9a95d7ec",
346
+ "isHook": false,
347
+ "skipped": false
348
+ }
349
+ ],
350
+ "suites": [],
351
+ "passes": [
352
+ "e0e8fc4e-5c92-4577-88a4-7414849a0897"
353
+ ],
354
+ "failures": [],
355
+ "pending": [],
356
+ "skipped": [],
357
+ "duration": 1754,
358
+ "root": false,
359
+ "rootEmpty": false,
360
+ "_timeout": 2000
361
+ }
362
+ ],
363
+ "passes": [],
364
+ "failures": [],
365
+ "pending": [],
366
+ "skipped": [],
367
+ "duration": 0,
368
+ "root": true,
369
+ "rootEmpty": true,
370
+ "_timeout": 2000
371
+ },
372
+ {
373
+ "uuid": "bb55ca00-8628-4795-9b31-5133ea9918ca",
374
+ "title": "",
375
+ "fullFile": "cypress\\e2e\\Cart_Testcases\\09_verify_updating_of_cart_after_adding_multiple_item.cy.js",
376
+ "file": "cypress\\e2e\\Cart_Testcases\\09_verify_updating_of_cart_after_adding_multiple_item.cy.js",
377
+ "beforeHooks": [],
378
+ "afterHooks": [],
379
+ "tests": [],
380
+ "suites": [
381
+ {
382
+ "uuid": "688100ec-13af-4740-b572-f8df34ee49b3",
383
+ "title": "09_verify_updating_of_cart_after_adding_multiple_item",
384
+ "fullFile": "",
385
+ "file": "",
386
+ "beforeHooks": [],
387
+ "afterHooks": [],
388
+ "tests": [
389
+ {
390
+ "title": "03_verify_updating_of_cart_after_adding_multiple_item",
391
+ "fullTitle": "09_verify_updating_of_cart_after_adding_multiple_item 03_verify_updating_of_cart_after_adding_multiple_item",
392
+ "timedOut": null,
393
+ "duration": 2879,
394
+ "state": "passed",
395
+ "speed": "fast",
396
+ "pass": true,
397
+ "fail": false,
398
+ "pending": false,
399
+ "context": null,
400
+ "code": "//verify the no item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(0);\n//add Sauce Labs Bike Light in the cart\n_Homepage.homepage.AddingItemtoCart(Bike_light);\n//verify the item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(1);\ncy.wait(1000);\n//add Sauce Labs Backpack in the cart\n_Homepage.homepage.AddingItemtoCart(Bagpack);\n//verify the item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(2);\n//click on the cart icon \n_Homepage.homepage.ClickonCartBtn();\n//verify the product is added in to the cart \n_CartPage.cartpage.verifytheCartpageOpened();\n//verify the item is added to the cart \n_CartPage.cartpage.VerifyAddedItemtoCart(Bagpack);\n//verify the item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(2);\n//verify the item is added to the cart \n_CartPage.cartpage.VerifyAddedItemtoCart(Bike_light);\n//verify remove item button is visible for the same product\n_Homepage.homepage.verifyRemovefromCartButton(Bike_light);\n//verify remove item button is visible for the same product\n_Homepage.homepage.verifyRemovefromCartButton(Bagpack);\n//remove the item form the container \n_CartPage.cartpage.RemoveItemfromCart(Bike_light);\n//verify the item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(1);\n//verify bike light item not present in the cart\n_CartPage.cartpage.VerifyAddedItemtoCart(Bike_light);\n//remove the item form the container \n_CartPage.cartpage.RemoveItemfromCart(Bagpack);\n//remove the item form the container \n_CartPage.cartpage.RemoveItemfromCart(Bike_light);\n//verify the item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(0);\n//verify no item present in the cart\n_CartPage.cartpage.VerifyAddedItemtoCart(Bike_light);",
401
+ "err": {},
402
+ "uuid": "2c56316e-0119-4b1d-ad51-c66dab22dd21",
403
+ "parentUUID": "688100ec-13af-4740-b572-f8df34ee49b3",
404
+ "isHook": false,
405
+ "skipped": false
406
+ }
407
+ ],
408
+ "suites": [],
409
+ "passes": [
410
+ "2c56316e-0119-4b1d-ad51-c66dab22dd21"
411
+ ],
412
+ "failures": [],
413
+ "pending": [],
414
+ "skipped": [],
415
+ "duration": 2879,
416
+ "root": false,
417
+ "rootEmpty": false,
418
+ "_timeout": 2000
419
+ }
420
+ ],
421
+ "passes": [],
422
+ "failures": [],
423
+ "pending": [],
424
+ "skipped": [],
425
+ "duration": 0,
426
+ "root": true,
427
+ "rootEmpty": true,
428
+ "_timeout": 2000
429
+ },
430
+ {
431
+ "uuid": "d2db3f4a-eb52-4906-bce7-d96892472939",
432
+ "title": "",
433
+ "fullFile": "cypress\\e2e\\Regression_Suit\\10_Verify_successful_purchase_multiple_items.cy.js",
434
+ "file": "cypress\\e2e\\Regression_Suit\\10_Verify_successful_purchase_multiple_items.cy.js",
435
+ "beforeHooks": [],
436
+ "afterHooks": [],
437
+ "tests": [],
438
+ "suites": [
439
+ {
440
+ "uuid": "477df4dd-4704-4923-b95a-4d3e7eef195e",
441
+ "title": "10_verify_complete_successful_purchase_of_single_item",
442
+ "fullFile": "",
443
+ "file": "",
444
+ "beforeHooks": [],
445
+ "afterHooks": [],
446
+ "tests": [
447
+ {
448
+ "title": "01_verify_complete_successful_purchase_of_single_item",
449
+ "fullTitle": "10_verify_complete_successful_purchase_of_single_item 01_verify_complete_successful_purchase_of_single_item",
450
+ "timedOut": null,
451
+ "duration": 5592,
452
+ "state": "passed",
453
+ "speed": "medium",
454
+ "pass": true,
455
+ "fail": false,
456
+ "pending": false,
457
+ "context": null,
458
+ "code": "//verify the no item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(0);\n//add Sauce Labs Bike Light in the cart\n_Homepage.homepage.AddingItemtoCart(Bike_light);\n//verify the item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(1);\ncy.wait(1000);\n//add Sauce Labs Backpack in the cart\n_Homepage.homepage.AddingItemtoCart(Bagpack);\n//verify the item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(2);\n//click on the cart icon \n_Homepage.homepage.ClickonCartBtn();\n//verify the product is added in to the cart \n_CartPage.cartpage.verifytheCartpageOpened();\n//verify the item is added to the cart \n_CartPage.cartpage.VerifyAddedItemtoCart(Bike_light);\n//verify the item is added to the cart \n_CartPage.cartpage.VerifyAddedItemtoCart(Bagpack);\n//verify the item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(2);\n//click on checkout button\n_CartPage.cartpage.clickOnCheckoutButton();\n//verify checkout page open\n_CheckoutPage.checkout_page.verifytheCheckoutpageOpened();\n//enter your information for checkout\n_CheckoutPage.checkout_page.enterDetailsforCheckout(checkout_Info_Parameter);\n//verify the item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(2);\n//click on Continue button\n_CheckoutPage.checkout_page.clickOnContinueButton();\n//verify the item is added to the cart \n_CheckoutPage.checkout_page.VerifyProductNameAndPriceInFinalStep(Bike_light, Price_Item_1);\n//verify the item is added to the cart \n_CheckoutPage.checkout_page.VerifyProductNameAndPriceInFinalStep(Bagpack, Price_Item_2);\n//verify total Price to pay after tax\n_CheckoutPage.checkout_page.verifyTotalPriceToPay();\n//click on Finish Button\n_CheckoutPage.checkout_page.clickOnFinishButton();\n//verify Purchase was successful\n_CheckoutPage.checkout_page.VerifyPurchase_Success();\n//verify the item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(0);",
459
+ "err": {},
460
+ "uuid": "71b70869-9c3e-4a64-86fa-bfb8164cc603",
461
+ "parentUUID": "477df4dd-4704-4923-b95a-4d3e7eef195e",
462
+ "isHook": false,
463
+ "skipped": false
464
+ }
465
+ ],
466
+ "suites": [],
467
+ "passes": [
468
+ "71b70869-9c3e-4a64-86fa-bfb8164cc603"
469
+ ],
470
+ "failures": [],
471
+ "pending": [],
472
+ "skipped": [],
473
+ "duration": 5592,
474
+ "root": false,
475
+ "rootEmpty": false,
476
+ "_timeout": 2000
477
+ }
478
+ ],
479
+ "passes": [],
480
+ "failures": [],
481
+ "pending": [],
482
+ "skipped": [],
483
+ "duration": 0,
484
+ "root": true,
485
+ "rootEmpty": true,
486
+ "_timeout": 2000
487
+ },
488
+ {
489
+ "uuid": "3443305f-b9aa-49a8-b190-f1c4f6c4493f",
490
+ "title": "",
491
+ "fullFile": "cypress\\e2e\\Smoke_Suit\\SMK001_Verify user can log in with valid credentials.cy.js",
492
+ "file": "cypress\\e2e\\Smoke_Suit\\SMK001_Verify user can log in with valid credentials.cy.js",
493
+ "beforeHooks": [],
494
+ "afterHooks": [],
495
+ "tests": [],
496
+ "suites": [
497
+ {
498
+ "uuid": "5bf6b2da-2294-49ea-ab67-6e882212c83a",
499
+ "title": "SMK001_Verify user can log in with valid credentials",
500
+ "fullFile": "",
501
+ "file": "",
502
+ "beforeHooks": [],
503
+ "afterHooks": [],
504
+ "tests": [
505
+ {
506
+ "title": "SMK001_Verify user can log in with valid credentials",
507
+ "fullTitle": "SMK001_Verify user can log in with valid credentials SMK001_Verify user can log in with valid credentials",
508
+ "timedOut": null,
509
+ "duration": 1066,
510
+ "state": "passed",
511
+ "speed": "fast",
512
+ "pass": true,
513
+ "fail": false,
514
+ "pending": false,
515
+ "context": null,
516
+ "code": "//login with valid user\n_navigationPage.NavigationPage.loginWithCredentials(User);\n//verify the home is visble \n_Homepage.homepage.verifyHomepage();\n//verify the products page is opened and products are displayed\n_Homepage.homepage.verifyProductsPage();",
517
+ "err": {},
518
+ "uuid": "ece1f2ae-06b2-4444-8ab5-f0ea05eaa643",
519
+ "parentUUID": "5bf6b2da-2294-49ea-ab67-6e882212c83a",
520
+ "isHook": false,
521
+ "skipped": false
522
+ }
523
+ ],
524
+ "suites": [],
525
+ "passes": [
526
+ "ece1f2ae-06b2-4444-8ab5-f0ea05eaa643"
527
+ ],
528
+ "failures": [],
529
+ "pending": [],
530
+ "skipped": [],
531
+ "duration": 1066,
532
+ "root": false,
533
+ "rootEmpty": false,
534
+ "_timeout": 2000
535
+ }
536
+ ],
537
+ "passes": [],
538
+ "failures": [],
539
+ "pending": [],
540
+ "skipped": [],
541
+ "duration": 0,
542
+ "root": true,
543
+ "rootEmpty": true,
544
+ "_timeout": 2000
545
+ },
546
+ {
547
+ "uuid": "ce7669f7-1370-4cf7-af26-3d2d3f7dbe9a",
548
+ "title": "",
549
+ "fullFile": "cypress\\e2e\\Smoke_Suit\\SMK002_Verify product list loads after login.cy.js",
550
+ "file": "cypress\\e2e\\Smoke_Suit\\SMK002_Verify product list loads after login.cy.js",
551
+ "beforeHooks": [],
552
+ "afterHooks": [],
553
+ "tests": [],
554
+ "suites": [
555
+ {
556
+ "uuid": "5e626ca8-05b0-42e9-9b0d-08a276d3e428",
557
+ "title": "SMK002_Verify product list loads after login",
558
+ "fullFile": "",
559
+ "file": "",
560
+ "beforeHooks": [],
561
+ "afterHooks": [],
562
+ "tests": [
563
+ {
564
+ "title": "SMK002_Verify product list loads after login",
565
+ "fullTitle": "SMK002_Verify product list loads after login SMK002_Verify product list loads after login",
566
+ "timedOut": null,
567
+ "duration": 2069,
568
+ "state": "passed",
569
+ "speed": "fast",
570
+ "pass": true,
571
+ "fail": false,
572
+ "pending": false,
573
+ "context": null,
574
+ "code": "//login with valid user\n_navigationPage.NavigationPage.loginWithCredentials(User);\n//verify the home is visble \n_Homepage.homepage.verifyHomepage();\n//verify the products page is opened and products are displayed\n_Homepage.homepage.verifyProductsPage();\n//verify minimum 6 products are displayed\n_Homepage.homepage.verifyMinimumProductsDisplayed(this.data.product_length);",
575
+ "err": {},
576
+ "uuid": "bc362bb9-59c8-4ceb-a99f-b8d07946c896",
577
+ "parentUUID": "5e626ca8-05b0-42e9-9b0d-08a276d3e428",
578
+ "isHook": false,
579
+ "skipped": false
580
+ }
581
+ ],
582
+ "suites": [],
583
+ "passes": [
584
+ "bc362bb9-59c8-4ceb-a99f-b8d07946c896"
585
+ ],
586
+ "failures": [],
587
+ "pending": [],
588
+ "skipped": [],
589
+ "duration": 2069,
590
+ "root": false,
591
+ "rootEmpty": false,
592
+ "_timeout": 2000
593
+ }
594
+ ],
595
+ "passes": [],
596
+ "failures": [],
597
+ "pending": [],
598
+ "skipped": [],
599
+ "duration": 0,
600
+ "root": true,
601
+ "rootEmpty": true,
602
+ "_timeout": 2000
603
+ },
604
+ {
605
+ "uuid": "ab2111f6-78ac-4c2b-9fdc-b5353ea8f9dc",
606
+ "title": "",
607
+ "fullFile": "cypress\\e2e\\Smoke_Suit\\SMK003_Verify user can add a product to cart.cy.js",
608
+ "file": "cypress\\e2e\\Smoke_Suit\\SMK003_Verify user can add a product to cart.cy.js",
609
+ "beforeHooks": [],
610
+ "afterHooks": [],
611
+ "tests": [],
612
+ "suites": [
613
+ {
614
+ "uuid": "7f2ebb3e-9b41-4457-9a7a-92db0a6aaef9",
615
+ "title": "SMK003_Verify user can add a product to cart",
616
+ "fullFile": "",
617
+ "file": "",
618
+ "beforeHooks": [],
619
+ "afterHooks": [],
620
+ "tests": [
621
+ {
622
+ "title": "SMK003_Verify user can add a product to cart",
623
+ "fullTitle": "SMK003_Verify user can add a product to cart SMK003_Verify user can add a product to cart",
624
+ "timedOut": null,
625
+ "duration": 1682,
626
+ "state": "passed",
627
+ "speed": "fast",
628
+ "pass": true,
629
+ "fail": false,
630
+ "pending": false,
631
+ "context": null,
632
+ "code": "//add Sauce Labs Backpack in the cart\n_Homepage.homepage.AddingItemtoCart(Bagpack);\n//verify the item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(1);\n//verify remove item button is visible for the same product\n_Homepage.homepage.verifyRemovefromCartButton(Bagpack);\n//click on the cart icon \n_Homepage.homepage.ClickonCartBtn();\n//verify the product is added in to the cart \n_CartPage.cartpage.verifytheCartpageOpened();\n//verify the item is added to the cart \n_CartPage.cartpage.VerifyAddedItemtoCart(Bagpack);\n//verify the item count added to cart \n_Homepage.homepage.verifyCartIconQuantity(1);",
633
+ "err": {},
634
+ "uuid": "d3f3f6de-1b3e-493d-b52a-08ee20f92036",
635
+ "parentUUID": "7f2ebb3e-9b41-4457-9a7a-92db0a6aaef9",
636
+ "isHook": false,
637
+ "skipped": false
638
+ }
639
+ ],
640
+ "suites": [],
641
+ "passes": [
642
+ "d3f3f6de-1b3e-493d-b52a-08ee20f92036"
643
+ ],
644
+ "failures": [],
645
+ "pending": [],
646
+ "skipped": [],
647
+ "duration": 1682,
648
+ "root": false,
649
+ "rootEmpty": false,
650
+ "_timeout": 2000
651
+ }
652
+ ],
653
+ "passes": [],
654
+ "failures": [],
655
+ "pending": [],
656
+ "skipped": [],
657
+ "duration": 0,
658
+ "root": true,
659
+ "rootEmpty": true,
660
+ "_timeout": 2000
661
+ },
662
+ {
663
+ "uuid": "e3aefc54-2c9d-43af-8dc5-24731f5bf33b",
664
+ "title": "",
665
+ "fullFile": "cypress\\e2e\\Login_Testcases\\01_Verify_Valid_Login.cy.js",
666
+ "file": "cypress\\e2e\\Login_Testcases\\01_Verify_Valid_Login.cy.js",
667
+ "beforeHooks": [],
668
+ "afterHooks": [],
669
+ "tests": [],
670
+ "suites": [
671
+ {
672
+ "uuid": "4479ca34-5fbd-43dc-afb1-0e1235b4a2d1",
673
+ "title": "01_Verify_Valid_Login",
674
+ "fullFile": "",
675
+ "file": "",
676
+ "beforeHooks": [],
677
+ "afterHooks": [],
678
+ "tests": [
679
+ {
680
+ "title": "01_Verify_Valid_Login",
681
+ "fullTitle": "01_Verify_Valid_Login 01_Verify_Valid_Login",
682
+ "timedOut": null,
683
+ "duration": 1045,
684
+ "state": "passed",
685
+ "speed": "fast",
686
+ "pass": true,
687
+ "fail": false,
688
+ "pending": false,
689
+ "context": null,
690
+ "code": "//login with valid user\n_navigationPage.NavigationPage.loginWithCredentials(User);\n//verify the home is visble \n_Homepage.homepage.verifyHomepage();",
691
+ "err": {},
692
+ "uuid": "6459f922-a492-4253-9f00-1811357f4236",
693
+ "parentUUID": "4479ca34-5fbd-43dc-afb1-0e1235b4a2d1",
694
+ "isHook": false,
695
+ "skipped": false
696
+ }
697
+ ],
698
+ "suites": [],
699
+ "passes": [
700
+ "6459f922-a492-4253-9f00-1811357f4236"
701
+ ],
702
+ "failures": [],
703
+ "pending": [],
704
+ "skipped": [],
705
+ "duration": 1045,
706
+ "root": false,
707
+ "rootEmpty": false,
708
+ "_timeout": 2000
709
+ }
710
+ ],
711
+ "passes": [],
712
+ "failures": [],
713
+ "pending": [],
714
+ "skipped": [],
715
+ "duration": 0,
716
+ "root": true,
717
+ "rootEmpty": true,
718
+ "_timeout": 2000
719
+ },
720
+ {
721
+ "uuid": "63a9d027-9062-4bc8-9f46-1de252152f43",
722
+ "title": "",
723
+ "fullFile": "cypress\\e2e\\Login_Testcases\\02_Verify_Invalid_Login_by_wrong_password.cy.js",
724
+ "file": "cypress\\e2e\\Login_Testcases\\02_Verify_Invalid_Login_by_wrong_password.cy.js",
725
+ "beforeHooks": [],
726
+ "afterHooks": [],
727
+ "tests": [],
728
+ "suites": [
729
+ {
730
+ "uuid": "fded1337-c99b-4515-a48e-9abf14903a89",
731
+ "title": "02_Verify_Invalid_Login_by_wrong_password",
732
+ "fullFile": "",
733
+ "file": "",
734
+ "beforeHooks": [],
735
+ "afterHooks": [],
736
+ "tests": [
737
+ {
738
+ "title": "02_Verify_Invalid_Login_by_wrong_password",
739
+ "fullTitle": "02_Verify_Invalid_Login_by_wrong_password 02_Verify_Invalid_Login_by_wrong_password",
740
+ "timedOut": null,
741
+ "duration": 1074,
742
+ "state": "passed",
743
+ "speed": "fast",
744
+ "pass": true,
745
+ "fail": false,
746
+ "pending": false,
747
+ "context": null,
748
+ "code": "//login with valid user\n_navigationPage.NavigationPage.loginWithCredentials(Invalid_User);\n//verify the home is visble \n_navigationPage.NavigationPage.verifyLoginErrorPopup(ErrorText);",
749
+ "err": {},
750
+ "uuid": "1858b47a-2554-44fc-9761-d39e9bfe3046",
751
+ "parentUUID": "fded1337-c99b-4515-a48e-9abf14903a89",
752
+ "isHook": false,
753
+ "skipped": false
754
+ }
755
+ ],
756
+ "suites": [],
757
+ "passes": [
758
+ "1858b47a-2554-44fc-9761-d39e9bfe3046"
759
+ ],
760
+ "failures": [],
761
+ "pending": [],
762
+ "skipped": [],
763
+ "duration": 1074,
764
+ "root": false,
765
+ "rootEmpty": false,
766
+ "_timeout": 2000
767
+ }
768
+ ],
769
+ "passes": [],
770
+ "failures": [],
771
+ "pending": [],
772
+ "skipped": [],
773
+ "duration": 0,
774
+ "root": true,
775
+ "rootEmpty": true,
776
+ "_timeout": 2000
777
+ },
778
+ {
779
+ "uuid": "50c60f25-5fe4-4219-91e3-de9db032d272",
780
+ "title": "",
781
+ "fullFile": "cypress\\e2e\\Login_Testcases\\03_Verify_Lockout_user_failed_login.cy.js",
782
+ "file": "cypress\\e2e\\Login_Testcases\\03_Verify_Lockout_user_failed_login.cy.js",
783
+ "beforeHooks": [],
784
+ "afterHooks": [],
785
+ "tests": [],
786
+ "suites": [
787
+ {
788
+ "uuid": "db3e828e-b83f-4bcb-bf8f-b45e73a42465",
789
+ "title": "03_Verify_Lockout_user_failed_login",
790
+ "fullFile": "",
791
+ "file": "",
792
+ "beforeHooks": [],
793
+ "afterHooks": [],
794
+ "tests": [
795
+ {
796
+ "title": "03_Verify_Lockout_user_failed_login",
797
+ "fullTitle": "03_Verify_Lockout_user_failed_login 03_Verify_Lockout_user_failed_login",
798
+ "timedOut": null,
799
+ "duration": 1061,
800
+ "state": "passed",
801
+ "speed": "fast",
802
+ "pass": true,
803
+ "fail": false,
804
+ "pending": false,
805
+ "context": null,
806
+ "code": "//login with valid user\n_navigationPage.NavigationPage.loginWithCredentials(Locket_out_User);\n//verify the home is visble \n_navigationPage.NavigationPage.verifyLoginErrorPopup(ErrorText);",
807
+ "err": {},
808
+ "uuid": "c929854b-f2ac-4b84-bbea-8c8ec57cd022",
809
+ "parentUUID": "db3e828e-b83f-4bcb-bf8f-b45e73a42465",
810
+ "isHook": false,
811
+ "skipped": false
812
+ }
813
+ ],
814
+ "suites": [],
815
+ "passes": [
816
+ "c929854b-f2ac-4b84-bbea-8c8ec57cd022"
817
+ ],
818
+ "failures": [],
819
+ "pending": [],
820
+ "skipped": [],
821
+ "duration": 1061,
822
+ "root": false,
823
+ "rootEmpty": false,
824
+ "_timeout": 2000
825
+ }
826
+ ],
827
+ "passes": [],
828
+ "failures": [],
829
+ "pending": [],
830
+ "skipped": [],
831
+ "duration": 0,
832
+ "root": true,
833
+ "rootEmpty": true,
834
+ "_timeout": 2000
835
+ }
836
+ ],
837
+ "meta": {
838
+ "mocha": {
839
+ "version": "7.2.0"
840
+ },
841
+ "mochawesome": {
842
+ "options": {
843
+ "quiet": false,
844
+ "reportFilename": "[status]_[datetime]-[name]",
845
+ "saveHtml": false,
846
+ "saveJson": true,
847
+ "consoleReporter": "spec",
848
+ "useInlineDiffs": false,
849
+ "code": true
850
+ },
851
+ "version": "7.1.3"
852
+ },
853
+ "marge": {
854
+ "options": {
855
+ "reportDir": "./cypress/results",
856
+ "reportFilename": "[status]_[datetime]-[name]",
857
+ "overwrite": true,
858
+ "html": false,
859
+ "json": true
860
+ },
861
+ "version": "6.2.0"
862
+ }
863
+ }
864
+ }