diff --git a/cypress/reports/.jsons/mochawesome.json b/cypress/reports/.jsons/mochawesome.json index cd4cba4..3ad6d88 100644 --- a/cypress/reports/.jsons/mochawesome.json +++ b/cypress/reports/.jsons/mochawesome.json @@ -5,9 +5,9 @@ "passes": 1, "pending": 0, "failures": 0, - "start": "2024-07-11T06:54:05.547Z", - "end": "2024-07-11T06:54:24.286Z", - "duration": 18739, + "start": "2024-07-12T15:59:28.608Z", + "end": "2024-07-12T16:01:07.470Z", + "duration": 98862, "testsRegistered": 1, "passPercent": 100, "pendingPercent": 0, @@ -18,7 +18,7 @@ }, "results": [ { - "uuid": "7a1caad9-7d47-470e-a866-f0294ee68d73", + "uuid": "932ae15f-17e3-4806-bb7d-91949972fe8a", "title": "", "fullFile": "cypress\\e2e\\add_product_cart.cy.js", "file": "cypress\\e2e\\add_product_cart.cy.js", @@ -27,7 +27,7 @@ "tests": [], "suites": [ { - "uuid": "367af88e-67fe-4f89-957d-072554bf1302", + "uuid": "4ab2f413-ea98-4d34-80de-1cbf9da430c5", "title": "Test Case 12: Add Products in Cart", "fullFile": "", "file": "", @@ -38,7 +38,7 @@ "title": "Add Products in Cart", "fullTitle": "Test Case 12: Add Products in Cart Add Products in Cart", "timedOut": null, - "duration": 12808, + "duration": 91159, "state": "passed", "speed": "slow", "pass": true, @@ -47,20 +47,20 @@ "context": null, "code": "// Step 1: Launch browser\n// Cypress automatically launches the browser\n// Step 2: Navigate to url 'http://automationexercise.com'\ncy.visit('http://automationexercise.com');\n// Step 3: Verify that home page is visible successfully\ncy.url().should('include', 'automationexercise');\n// Step 4: Click 'Products' button\ncy.get('#header > div > div > div > div.col-sm-8 > div > ul > li:nth-child(2) > a').click();\n// Step 5: Hover over first product and click 'Add to cart'\ncy.xpath('/html/body/section[2]/div/div/div[2]/div/div[2]/div/div[1]').trigger('mouseover').xpath('/html/body/section[2]/div/div/div[2]/div/div[2]/div/div[1]/div[1]/a').click();\n// Step 6: Click 'Continue Shopping' button\ncy.get('#cartModal > div > div > div.modal-footer > button').click();\n// Step 7: Hover over second product and click 'Add to cart'\ncy.xpath('/html/body/section[2]/div/div/div[2]/div/div[3]/div/div[1]').trigger('mouseover').xpath('/html/body/section[2]/div/div/div[2]/div/div[3]/div/div[1]/div[1]/a').click();\ncy.get('#cartModal > div > div > div.modal-footer > button').click();\n// Step 8: Click 'View Cart' button\ncy.get('#header > div > div > div > div.col-sm-8 > div > ul > li:nth-child(3) > a').click();\n// Step 9: Verify both products are added to Cart\ncy.get('#cart_info_table > tbody').find('.cart_product').should('have.length', 2);\n// Step 10: Verify their prices, quantity and total price\n// Assuming each product has a 'price' class and the total price has a 'total-price' class\ncy.get('tbody > tr').each($el => {\n const price = parseFloat($el.find('.cart_price').text().replace(/[^0-9.-]+/g, \"\")) * 1000;\n const quantity = parseInt($el.find('.cart_quantity').text());\n const totalPrice = price * quantity;\n // Find total price of each product and match is equal to price * quantity\n const total = parseFloat($el.find('.cart_total_price').text().replace(/[^0-9.-]+/g, \"\")) * 1000;\n expect(total).to.equal(totalPrice);\n});", "err": {}, - "uuid": "280519b5-a7c7-41c7-9512-3aed59b5e47a", - "parentUUID": "367af88e-67fe-4f89-957d-072554bf1302", + "uuid": "f92c5314-d917-42c0-837f-cae2afed2bd9", + "parentUUID": "4ab2f413-ea98-4d34-80de-1cbf9da430c5", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "280519b5-a7c7-41c7-9512-3aed59b5e47a" + "f92c5314-d917-42c0-837f-cae2afed2bd9" ], "failures": [], "pending": [], "skipped": [], - "duration": 12808, + "duration": 91159, "root": false, "rootEmpty": false, "_timeout": 2000 diff --git a/cypress/reports/.jsons/mochawesome_001.json b/cypress/reports/.jsons/mochawesome_001.json index e418806..cc65921 100644 --- a/cypress/reports/.jsons/mochawesome_001.json +++ b/cypress/reports/.jsons/mochawesome_001.json @@ -5,9 +5,9 @@ "passes": 1, "pending": 0, "failures": 0, - "start": "2024-07-11T06:54:28.208Z", - "end": "2024-07-11T06:55:01.507Z", - "duration": 33299, + "start": "2024-07-12T16:01:14.001Z", + "end": "2024-07-12T16:04:02.878Z", + "duration": 168877, "testsRegistered": 1, "passPercent": 100, "pendingPercent": 0, @@ -18,7 +18,7 @@ }, "results": [ { - "uuid": "a52a2f4d-3a0d-4ebf-9bb6-f33df348316f", + "uuid": "b5df6c14-2913-4087-a11f-de98f3394307", "title": "", "fullFile": "cypress\\e2e\\add_review_on_product.cy.js", "file": "cypress\\e2e\\add_review_on_product.cy.js", @@ -27,7 +27,7 @@ "tests": [], "suites": [ { - "uuid": "8b8d6747-e8be-4dad-8522-c0ef66ba9a3a", + "uuid": "ac6cd77e-71ff-4cc8-9d78-29df9affe268", "title": "Add review on product", "fullFile": "", "file": "", @@ -38,7 +38,7 @@ "title": "adds a review and verifies success message", "fullTitle": "Add review on product adds a review and verifies success message", "timedOut": null, - "duration": 27854, + "duration": 161576, "state": "passed", "speed": "slow", "pass": true, @@ -47,20 +47,20 @@ "context": null, "code": "cy.visit('http://automationexercise.com');\n// Click on 'Products' button\ncy.get('a[href=\"/products\"]').click();\n// Verify user is navigated to ALL PRODUCTS page\ncy.contains('All Products').should('be.visible');\n// Select a product (replace with logic to choose a product)\n// ... your logic to select a product ...\n// Click on 'View Product' button\ncy.get('a[href=\"/product_details/1\"]').click(); // Assuming the first product\n// Verify 'Write Your Review' is visible\ncy.contains('Write Your Review').should('be.visible');\n// Enter name, email and review\nconst reviewerName = 'Test User';\nconst reviewerEmail = 'test.user@example.com';\nconst reviewText = 'This is a great product!';\ncy.get('#name').type(reviewerName);\ncy.get('#email').type(reviewerEmail);\ncy.get('#button-review').type(reviewText);\n// Verify success message 'Thank you for your review.'\ncy.get('#review-section div > span').should('contain', 'Thank you for your review.');", "err": {}, - "uuid": "3f5cb5e1-275c-4ea1-b67d-564d00c60048", - "parentUUID": "8b8d6747-e8be-4dad-8522-c0ef66ba9a3a", + "uuid": "770b6011-d65b-4fc3-bf2c-2da56ac3e269", + "parentUUID": "ac6cd77e-71ff-4cc8-9d78-29df9affe268", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "3f5cb5e1-275c-4ea1-b67d-564d00c60048" + "770b6011-d65b-4fc3-bf2c-2da56ac3e269" ], "failures": [], "pending": [], "skipped": [], - "duration": 27854, + "duration": 161576, "root": false, "rootEmpty": false, "_timeout": 2000 diff --git a/cypress/reports/.jsons/mochawesome_002.json b/cypress/reports/.jsons/mochawesome_002.json index 13e860a..c6bb81b 100644 --- a/cypress/reports/.jsons/mochawesome_002.json +++ b/cypress/reports/.jsons/mochawesome_002.json @@ -5,9 +5,9 @@ "passes": 1, "pending": 0, "failures": 0, - "start": "2024-07-11T06:55:05.757Z", - "end": "2024-07-11T06:55:21.919Z", - "duration": 16162, + "start": "2024-07-12T16:04:08.640Z", + "end": "2024-07-12T16:04:49.899Z", + "duration": 41259, "testsRegistered": 1, "passPercent": 100, "pendingPercent": 0, @@ -18,7 +18,7 @@ }, "results": [ { - "uuid": "878dd4b1-7915-4f31-8234-ede1ea8a3ca4", + "uuid": "4e3d0034-1bd5-4abf-8325-b06b04bda0fc", "title": "", "fullFile": "cypress\\e2e\\add_to_cart_from_recommended_items.cy.js", "file": "cypress\\e2e\\add_to_cart_from_recommended_items.cy.js", @@ -27,7 +27,7 @@ "tests": [], "suites": [ { - "uuid": "77471cac-c114-439e-944c-1ffbc5f3904a", + "uuid": "7c758fc2-6934-4f76-8a4e-828f759c165a", "title": "Add to cart from Recommended items", "fullFile": "", "file": "", @@ -38,7 +38,7 @@ "title": "adds a recommended product to cart and verifies", "fullTitle": "Add to cart from Recommended items adds a recommended product to cart and verifies", "timedOut": null, - "duration": 10761, + "duration": 34390, "state": "passed", "speed": "slow", "pass": true, @@ -47,20 +47,20 @@ "context": null, "code": "cy.visit('http://automationexercise.com');\n// Scroll to bottom of page\ncy.scrollTo('bottom');\n// Verify 'RECOMMENDED ITEMS' are visible\ncy.contains('recommended items').should('be.visible');\n// Click on 'Add To Cart' on the first Recommended product (adjust selector if needed)\ncy.get('#recommended-item-carousel div > a').first().click({\n force: true\n}); // Assuming \"Add To Cart\" is next to product title\ncy.wait(2000);\n// Click on 'Continue Shopping' button\ncy.get('#cartModal > div > div > div.modal-footer > button').click({\n force: true\n});\ncy.wait(1000);\n// Click on 'View Cart' button\ncy.get('.nav a[href=\"/view_cart\"]').click();\n// Verify that product is displayed in cart page and display none\ncy.get('#cart_info_table').should('be.visible').and('not.have.css', 'display', 'none');", "err": {}, - "uuid": "cda756b8-e379-42d3-afb7-d83c5eaae027", - "parentUUID": "77471cac-c114-439e-944c-1ffbc5f3904a", + "uuid": "f7730025-4739-4db4-9dae-186af03ad173", + "parentUUID": "7c758fc2-6934-4f76-8a4e-828f759c165a", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "cda756b8-e379-42d3-afb7-d83c5eaae027" + "f7730025-4739-4db4-9dae-186af03ad173" ], "failures": [], "pending": [], "skipped": [], - "duration": 10761, + "duration": 34390, "root": false, "rootEmpty": false, "_timeout": 2000 diff --git a/cypress/reports/.jsons/mochawesome_003.json b/cypress/reports/.jsons/mochawesome_003.json index 6fa357e..2bb1ba7 100644 --- a/cypress/reports/.jsons/mochawesome_003.json +++ b/cypress/reports/.jsons/mochawesome_003.json @@ -5,9 +5,9 @@ "passes": 1, "pending": 0, "failures": 0, - "start": "2024-07-11T06:55:26.139Z", - "end": "2024-07-11T06:55:46.813Z", - "duration": 20674, + "start": "2024-07-12T16:04:57.223Z", + "end": "2024-07-12T16:06:09.010Z", + "duration": 71787, "testsRegistered": 1, "passPercent": 100, "pendingPercent": 0, @@ -18,7 +18,7 @@ }, "results": [ { - "uuid": "b0564f58-5859-46cd-9be4-1b56aa14c5df", + "uuid": "9a4dba1a-c616-401b-b03b-f4edc6117aba", "title": "", "fullFile": "cypress\\e2e\\contact_us.cy.js", "file": "cypress\\e2e\\contact_us.cy.js", @@ -27,7 +27,7 @@ "tests": [], "suites": [ { - "uuid": "80f5b196-6a6d-4e66-bbca-28f1f847a4c8", + "uuid": "9cc097ea-d0cf-4f57-aaee-7ed5ec3699a9", "title": "Contact Us Form", "fullFile": "", "file": "", @@ -38,7 +38,7 @@ "title": "Contact Us Form validation checking....", "fullTitle": "Contact Us Form Contact Us Form validation checking....", "timedOut": null, - "duration": 15103, + "duration": 64633, "state": "passed", "speed": "slow", "pass": true, @@ -47,20 +47,20 @@ "context": null, "code": "// Step 1: Launch browser\n// Cypress automatically launches the browser\n// Step 2: Navigate to url 'http://automationexercise.com'\ncy.visit('http://automationexercise.com');\n// Step 3: Verify that home page is visible successfully\ncy.url().should('include', 'automationexercise');\n// Step 4: Click on 'Contact Us' button\ncy.contains('Contact us').click();\n// Step 5: Verify 'GET IN TOUCH' is visible\ncy.get('#contact-page > div.row > div.col-sm-8 > div > h2').should('contain', 'Get In Touch');\n// Step 6: Enter name, email, subject and message\ncy.get('[data-qa=\"name\"]').type('Test User');\ncy.get('[data-qa=\"email\"]').type('testuser@example.com');\ncy.get('[data-qa=\"subject\"]').type('Test Subject');\ncy.get('[data-qa=\"message\"]').type('Test Message');\n// Step 7: Upload file\nconst fileName = './reports/unittest.pdf';\ncy.get('input[type=file]').selectFile(fileName);\n// Step 8: Click 'Submit' button\ncy.get('[data-qa=\"submit-button\"]').click();\n// Step 9: Click OK button\ncy.on('window:confirm', () => true);\n// Step 10: Verify success message 'Success! Your details have been submitted successfully.' is visible\ncy.get('.status ').should('contain', 'Success! Your details have been submitted successfully.');\n// Step 11: Click 'Home' button and verify that landed to home page successfully\ncy.get('#form-section > a > span > i').click();\ncy.url().should('include', 'automationexercise');", "err": {}, - "uuid": "0adb308c-6eb0-432e-a7c3-a6fe5a8cc295", - "parentUUID": "80f5b196-6a6d-4e66-bbca-28f1f847a4c8", + "uuid": "66080538-ac14-4380-8384-c39df826bcd0", + "parentUUID": "9cc097ea-d0cf-4f57-aaee-7ed5ec3699a9", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "0adb308c-6eb0-432e-a7c3-a6fe5a8cc295" + "66080538-ac14-4380-8384-c39df826bcd0" ], "failures": [], "pending": [], "skipped": [], - "duration": 15103, + "duration": 64633, "root": false, "rootEmpty": false, "_timeout": 2000 diff --git a/cypress/reports/.jsons/mochawesome_004.json b/cypress/reports/.jsons/mochawesome_004.json index 2ba4068..95e7ccd 100644 --- a/cypress/reports/.jsons/mochawesome_004.json +++ b/cypress/reports/.jsons/mochawesome_004.json @@ -2,14 +2,14 @@ "stats": { "suites": 1, "tests": 1, - "passes": 1, + "passes": 0, "pending": 0, - "failures": 0, - "start": "2024-07-11T06:55:51.199Z", - "end": "2024-07-11T06:56:46.974Z", - "duration": 55775, + "failures": 1, + "start": "2024-07-12T16:06:30.454Z", + "end": "2024-07-12T16:07:23.908Z", + "duration": 53454, "testsRegistered": 1, - "passPercent": 100, + "passPercent": 0, "pendingPercent": 0, "other": 0, "hasOther": false, @@ -18,7 +18,7 @@ }, "results": [ { - "uuid": "b51f5527-9527-496b-9c22-6bab9061d912", + "uuid": "4620b8eb-894a-4369-a523-9d98739ea21c", "title": "", "fullFile": "cypress\\e2e\\download_Invoice_after_purchase_order.cy.js", "file": "cypress\\e2e\\download_Invoice_after_purchase_order.cy.js", @@ -27,7 +27,7 @@ "tests": [], "suites": [ { - "uuid": "670aee81-683e-4268-8581-4c17441c42fc", + "uuid": "57a257d9-a3dc-4e2f-90a4-35dd1914738f", "title": "Download Invoice after purchase order", "fullFile": "", "file": "", @@ -38,29 +38,33 @@ "title": "should allow downloading invoice after successful purchase", "fullTitle": "Download Invoice after purchase order should allow downloading invoice after successful purchase", "timedOut": null, - "duration": 49982, - "state": "passed", - "speed": "slow", - "pass": true, - "fail": false, + "duration": 42066, + "state": "failed", + "speed": null, + "pass": false, + "fail": true, "pending": false, - "context": null, + "context": "{\n \"title\": \"cypress-mochawesome-reporter-screenshots\",\n \"value\": [\n [\n \"\\\\download_Invoice_after_purchase_order.cy.js\\\\Download Invoice after purchase order -- should allow downloading invoice after successful purchase (failed) (3).png\"\n ]\n ]\n}", "code": "cy.visit('http://automationexercise.com');\n// Verify home page is visible\ncy.get('.logo a>img').should('be.visible');\n//click signup/login button\ncy.contains('Signup / Login').click();\n// Fill all details in Signup and create account\ncy.contains('New User Signup!').should('be.visible');\ncy.get('[data-qa=\"signup-name\"]').type('Amir Hossain');\ncy.get('[data-qa=\"signup-email\"]').type('amir.swe@gmail.com');\ncy.get('[data-qa=\"signup-button\"]').click();\n// Fill in account details\n// Replace '#input' with the actual selectors for each input field\ncy.get('#id_gender1').type('Mr.');\ncy.get('[data-qa=\"password\"]').type('abubakkar90');\ncy.get('[data-qa=\"days\"]').select('1');\ncy.get('[data-qa=\"months\"]').select('January');\ncy.get('[data-qa=\"years\"]').select('1998');\ncy.get('#newsletter').check();\ncy.get('#optin').check();\ncy.get('[data-qa=\"first_name\"]').type('Amir');\ncy.get('[data-qa=\"last_name\"]').type('Hossain');\ncy.get('[data-qa=\"company\"]').type('Test Company');\ncy.get('[data-qa=\"address\"]').type('123 Test St');\ncy.get('[data-qa=\"address2\"]').type('Apt 4B');\ncy.get('#country').select('Canada');\ncy.get('[data-qa=\"state\"]').type('NY');\ncy.get('[data-qa=\"city\"]').type('New York');\ncy.get('[data-qa=\"zipcode\"]').type('10001');\ncy.get('[data-qa=\"mobile_number\"]').type('1234567890');\ncy.get('[data-qa=\"create-account\"]').click();\ncy.get('[data-qa=\"account-created\"]').contains('Account Created!');\ncy.get('[data-qa=\"continue-button\"]').click();\n// Verify ' Logged in as username' at top\ncy.contains('Logged in as Amir Hossain').should('be.visible');\n// add product\ncy.get('.product-image-wrapper .choose > ul >li >a').first().click();\n// Verify product detail is opened\ncy.get('.product-information').should('be.visible');\n// Increase quantity to 4\ncy.get('#quantity').clear().type('4');\n// Click 'Add to cart' button\ncy.get('.cart').click();\n// confirm the product\ncy.get('#cartModal > div > div > div.modal-footer > button').click();\n// Click 'View Cart' button\ncy.get('li [href=\"/view_cart\"]').click();\n// Verify cart page is displayed\ncy.get('.cart_info').should('be.visible');\n// Click 'Proceed To Checkout' button again\ncy.contains('Proceed To Checkout').click();\n// Enter description in comment text area and click 'Place Order'\ncy.get('#ordermsg').type('Test order with registration');\ncy.contains('Place Order').click();\n// Click 'Pay and Confirm Order' button\ncy.get('[data-qa=\"name-on-card\"]').type('Amir Hossain');\ncy.get('[data-qa=\"card-number\"]').type('5655-1814-0058-1255');\ncy.get('[data-qa=\"cvc\"]').type('588');\ncy.get('[data-qa=\"expiry-month\"]').type('08/33');\ncy.get('[data-qa=\"expiry-year\"]').type('2033');\ncy.get('[data-qa = \"pay-button\"]').click();\n// Verify success message 'Your order has been placed successfully!'\ncy.contains('Congratulations! Your order has been confirmed!').should('be.visible');\n//Download Invoice\ncy.contains('Download Invoice').click();\n//Click on Continue Button\ncy.contains('Continue').click();\n// Click 'Delete Account' button\ncy.get('#header > div > div > div > div.col-sm-8 > div > ul > li:nth-child(5) > a').click();\n// Verify 'ACCOUNT DELETED!' and click 'Continue' button\ncy.get('[data-qa=\"account-deleted\"]').contains('Account Deleted!');\ncy.get('[data-qa=\"continue-button\"]').click();", - "err": {}, - "uuid": "5dfd4d2e-b52c-4463-af34-0d8a2f916e73", - "parentUUID": "670aee81-683e-4268-8581-4c17441c42fc", + "err": { + "message": "AssertionError: Timed out retrying after 4000ms: Expected to find element: `#id_gender1`, but never found it.", + "estack": "AssertionError: Timed out retrying after 4000ms: Expected to find element: `#id_gender1`, but never found it.\n at Context.eval (webpack:///./cypress/e2e/download_Invoice_after_purchase_order.cy.js:20:11)", + "diff": null + }, + "uuid": "61dcb42e-510b-4e4e-a34f-03f81e44f3a4", + "parentUUID": "57a257d9-a3dc-4e2f-90a4-35dd1914738f", "isHook": false, "skipped": false } ], "suites": [], - "passes": [ - "5dfd4d2e-b52c-4463-af34-0d8a2f916e73" + "passes": [], + "failures": [ + "61dcb42e-510b-4e4e-a34f-03f81e44f3a4" ], - "failures": [], "pending": [], "skipped": [], - "duration": 49982, + "duration": 42066, "root": false, "rootEmpty": false, "_timeout": 2000 diff --git a/cypress/reports/.jsons/mochawesome_005.json b/cypress/reports/.jsons/mochawesome_005.json index 42eea6d..281fef3 100644 --- a/cypress/reports/.jsons/mochawesome_005.json +++ b/cypress/reports/.jsons/mochawesome_005.json @@ -5,9 +5,9 @@ "passes": 1, "pending": 0, "failures": 0, - "start": "2024-07-11T06:56:52.325Z", - "end": "2024-07-11T06:57:07.963Z", - "duration": 15638, + "start": "2024-07-12T16:07:31.688Z", + "end": "2024-07-12T16:08:37.108Z", + "duration": 65420, "testsRegistered": 1, "passPercent": 100, "pendingPercent": 0, @@ -18,7 +18,7 @@ }, "results": [ { - "uuid": "4624ecc5-f9b5-4a4b-9be3-9a696b31ff57", + "uuid": "c76e52a6-488d-47e7-b264-86d307feb412", "title": "", "fullFile": "cypress\\e2e\\invalid_login.cy.js", "file": "cypress\\e2e\\invalid_login.cy.js", @@ -27,7 +27,7 @@ "tests": [], "suites": [ { - "uuid": "71b3dbaa-222a-4e39-9058-d5217dbae236", + "uuid": "de5075f6-e731-4161-952b-0b19b8e8caad", "title": "Login User", "fullFile": "", "file": "", @@ -38,29 +38,29 @@ "title": "should fail to login with incorrect email and password", "fullTitle": "Login User should fail to login with incorrect email and password", "timedOut": null, - "duration": 9682, + "duration": 56075, "state": "passed", - "speed": "medium", + "speed": "slow", "pass": true, "fail": false, "pending": false, "context": null, "code": "cy.visit('http://automationexercise.com');\ncy.contains('Signup / Login').click();\ncy.contains('Login to your account');\n// Replace '#email' and '#password' with the actual selectors for each input field\ncy.get('[data-qa=\"login-email\"]').type('incorrect@example.com');\ncy.get('[data-qa=\"login-password\"]').type('incorrectpassword');\ncy.get('[data-qa=\"login-button\"]').click();\ncy.contains('Your email or password is incorrect!').should('be.visible');", "err": {}, - "uuid": "96b9d680-723a-4511-b464-3575693eb66d", - "parentUUID": "71b3dbaa-222a-4e39-9058-d5217dbae236", + "uuid": "1f54a227-11e6-496d-8933-9fc5082763b1", + "parentUUID": "de5075f6-e731-4161-952b-0b19b8e8caad", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "96b9d680-723a-4511-b464-3575693eb66d" + "1f54a227-11e6-496d-8933-9fc5082763b1" ], "failures": [], "pending": [], "skipped": [], - "duration": 9682, + "duration": 56075, "root": false, "rootEmpty": false, "_timeout": 2000 diff --git a/cypress/reports/.jsons/mochawesome_006.json b/cypress/reports/.jsons/mochawesome_006.json index f25c853..40427b2 100644 --- a/cypress/reports/.jsons/mochawesome_006.json +++ b/cypress/reports/.jsons/mochawesome_006.json @@ -2,14 +2,14 @@ "stats": { "suites": 1, "tests": 1, - "passes": 1, + "passes": 0, "pending": 0, - "failures": 0, - "start": "2024-07-11T06:57:12.291Z", - "end": "2024-07-11T06:57:53.141Z", - "duration": 40850, + "failures": 1, + "start": "2024-07-12T16:08:43.362Z", + "end": "2024-07-12T16:09:39.041Z", + "duration": 55679, "testsRegistered": 1, - "passPercent": 100, + "passPercent": 0, "pendingPercent": 0, "other": 0, "hasOther": false, @@ -18,7 +18,7 @@ }, "results": [ { - "uuid": "f73dae6e-3b2e-4f80-9ee9-526dfbca460b", + "uuid": "14812e1b-e322-4dd6-b0d2-84eb8bc6c2cc", "title": "", "fullFile": "cypress\\e2e\\login_user.cy.js", "file": "cypress\\e2e\\login_user.cy.js", @@ -27,7 +27,7 @@ "tests": [], "suites": [ { - "uuid": "75e47887-2845-4d92-9bd1-c1e296dc5f39", + "uuid": "8371d54f-d574-49fb-ab61-82dbbb876ef3", "title": "Login User", "fullFile": "", "file": "", @@ -38,29 +38,33 @@ "title": "should login and delete a user", "fullTitle": "Login User should login and delete a user", "timedOut": null, - "duration": 35109, - "state": "passed", - "speed": "slow", - "pass": true, - "fail": false, + "duration": 47956, + "state": "failed", + "speed": null, + "pass": false, + "fail": true, "pending": false, - "context": null, + "context": "{\n \"title\": \"cypress-mochawesome-reporter-screenshots\",\n \"value\": [\n [\n \"\\\\login_user.cy.js\\\\Login User -- should login and delete a user -- before all hook Registration before login to the system (failed) (3).png\"\n ]\n ]\n}", "code": "cy.visit('http://automationexercise.com');\ncy.contains('Logout').click();\ncy.contains('Login to your account').should('be.visible');\n// Replace '#email' and '#password' with the actual selectors for each input field\ncy.get('[data-qa=\"login-email\"]').type('amir.swe@gmail.com');\ncy.get('[data-qa=\"login-password\"]').type('abubakkar90');\ncy.get('[data-qa=\"login-button\"]').click();\ncy.contains('Logged in as Amir Hossain').should('be.visible');\ncy.get('#header > div > div > div > div.col-sm-8 > div > ul > li:nth-child(5) > a').click();\ncy.get('[data-qa=\"account-deleted\"]').contains('Account Deleted!');", - "err": {}, - "uuid": "4f54b9a8-9727-4d3b-944b-47f455d5affc", - "parentUUID": "75e47887-2845-4d92-9bd1-c1e296dc5f39", + "err": { + "message": "AssertionError: Timed out retrying after 4000ms: Expected to find element: `#id_gender1`, but never found it.\n\nBecause this error occurred during a `before all` hook we are skipping the remaining tests in the current suite: `Login User`", + "estack": "AssertionError: Timed out retrying after 4000ms: Expected to find element: `#id_gender1`, but never found it.\n\nBecause this error occurred during a `before all` hook we are skipping the remaining tests in the current suite: `Login User`\n at Context.eval (webpack:///./cypress/e2e/login_user.cy.js:20:11)", + "diff": null + }, + "uuid": "042e1395-1515-4427-849a-a5b54a51a3ce", + "parentUUID": "8371d54f-d574-49fb-ab61-82dbbb876ef3", "isHook": false, "skipped": false } ], "suites": [], - "passes": [ - "4f54b9a8-9727-4d3b-944b-47f455d5affc" + "passes": [], + "failures": [ + "042e1395-1515-4427-849a-a5b54a51a3ce" ], - "failures": [], "pending": [], "skipped": [], - "duration": 35109, + "duration": 47956, "root": false, "rootEmpty": false, "_timeout": 2000 diff --git a/cypress/reports/.jsons/mochawesome_007.json b/cypress/reports/.jsons/mochawesome_007.json index 202b0dd..2c3a67e 100644 --- a/cypress/reports/.jsons/mochawesome_007.json +++ b/cypress/reports/.jsons/mochawesome_007.json @@ -5,9 +5,9 @@ "passes": 1, "pending": 0, "failures": 0, - "start": "2024-07-11T06:57:57.366Z", - "end": "2024-07-11T06:58:15.243Z", - "duration": 17877, + "start": "2024-07-12T16:09:48.063Z", + "end": "2024-07-12T16:11:10.359Z", + "duration": 82296, "testsRegistered": 1, "passPercent": 100, "pendingPercent": 0, @@ -18,7 +18,7 @@ }, "results": [ { - "uuid": "e535f82b-6c46-4cfa-afc4-ae43e4274201", + "uuid": "db873d56-8ae9-413f-b4df-bea3e8fd01dd", "title": "", "fullFile": "cypress\\e2e\\logout_user.cy.js", "file": "cypress\\e2e\\logout_user.cy.js", @@ -27,7 +27,7 @@ "tests": [], "suites": [ { - "uuid": "8229be10-a42a-4a7a-949c-b4371cbe72d3", + "uuid": "a73281fb-2671-4724-8875-24bdc4a41526", "title": "Logout User", "fullFile": "", "file": "", @@ -38,7 +38,7 @@ "title": "should login and logout a user", "fullTitle": "Logout User should login and logout a user", "timedOut": null, - "duration": 12562, + "duration": 74786, "state": "passed", "speed": "slow", "pass": true, @@ -47,20 +47,20 @@ "context": null, "code": "cy.visit('http://automationexercise.com');\ncy.contains('Signup / Login').click();\ncy.contains('Login to your account');\n// Replace '#email' and '#password' with the actual selectors for each input field\ncy.get('[data-qa=\"login-email\"]').type('preaus@gmail.com');\ncy.get('[data-qa=\"login-password\"]').type('123456');\ncy.get('[data-qa=\"login-button\"]').click();\ncy.contains('Logged in as Preaus Sarkar').should('be.visible');\ncy.get('#header > div > div > div > div.col-sm-8 > div > ul > li:nth-child(4)').click();\n// Replace '#loginPage' with the actual selector or condition that verifies the user is on the login page\ncy.get('#form > div > div > div.col-sm-4.col-sm-offset-1 > div > h2').should('be.visible');", "err": {}, - "uuid": "49b35cad-19e3-4af6-b49a-753723491d61", - "parentUUID": "8229be10-a42a-4a7a-949c-b4371cbe72d3", + "uuid": "72bd19d9-c713-46fd-a092-40cbea22857d", + "parentUUID": "a73281fb-2671-4724-8875-24bdc4a41526", "isHook": false, "skipped": false } ], "suites": [], "passes": [ - "49b35cad-19e3-4af6-b49a-753723491d61" + "72bd19d9-c713-46fd-a092-40cbea22857d" ], "failures": [], "pending": [], "skipped": [], - "duration": 12562, + "duration": 74786, "root": false, "rootEmpty": false, "_timeout": 2000 diff --git a/cypress/reports/.jsons/mochawesome_008.json b/cypress/reports/.jsons/mochawesome_008.json index 3829768..e6e8629 100644 --- a/cypress/reports/.jsons/mochawesome_008.json +++ b/cypress/reports/.jsons/mochawesome_008.json @@ -2,14 +2,14 @@ "stats": { "suites": 1, "tests": 1, - "passes": 1, + "passes": 0, "pending": 0, - "failures": 0, - "start": "2024-07-11T06:58:19.381Z", - "end": "2024-07-11T06:59:20.855Z", - "duration": 61474, + "failures": 1, + "start": "2024-07-12T16:11:18.228Z", + "end": "2024-07-12T16:12:14.868Z", + "duration": 56640, "testsRegistered": 1, - "passPercent": 100, + "passPercent": 0, "pendingPercent": 0, "other": 0, "hasOther": false, @@ -18,7 +18,7 @@ }, "results": [ { - "uuid": "0be0a003-12e1-456a-88b4-4a9126d6afa3", + "uuid": "4ad07b3f-4651-440e-bcef-46b4460097e5", "title": "", "fullFile": "cypress\\e2e\\place_order_login_before_checkout.cy.js", "file": "cypress\\e2e\\place_order_login_before_checkout.cy.js", @@ -27,7 +27,7 @@ "tests": [], "suites": [ { - "uuid": "cacf74a4-447a-469f-9790-0348a1e7c992", + "uuid": "7d63d875-6ada-4ea2-9c36-d50cea638234", "title": "Place Order: Register Before Checkout", "fullFile": "", "file": "", @@ -38,29 +38,33 @@ "title": "Register before cart adds products into the cart, and process shippment", "fullTitle": "Place Order: Register Before Checkout Register before cart adds products into the cart, and process shippment", "timedOut": null, - "duration": 56291, - "state": "passed", - "speed": "slow", - "pass": true, - "fail": false, + "duration": 48057, + "state": "failed", + "speed": null, + "pass": false, + "fail": true, "pending": false, - "context": null, + "context": "{\n \"title\": \"cypress-mochawesome-reporter-screenshots\",\n \"value\": [\n [\n \"\\\\place_order_login_before_checkout.cy.js\\\\Place Order Register Before Checkout -- Register before cart adds products into the cart, and process shippment -- before all hook Registration before login to the system and purchase product (failed) (2).png\"\n ]\n ]\n}", "code": "cy.visit('http://automationexercise.com');\n// Verify home page is visible\ncy.get('.logo a>img').should('be.visible');\n//click signup/login button\ncy.contains('Logout').click();\n// Fill up Login to your account\ncy.contains('Login to your account').should('be.visible');\n// Replace '#email' and '#password' with the actual selectors for each input field\ncy.get('[data-qa=\"login-email\"]').type('amir.swe@gmail.com');\ncy.get('[data-qa=\"login-password\"]').type('abubakkar90');\ncy.get('[data-qa=\"login-button\"]').click();\n// Verify ' Logged in as username' at top\ncy.contains('Logged in as').should('be.visible');\n// add product\ncy.get('.product-image-wrapper .choose > ul >li >a').first().click();\n// Verify product detail is opened\ncy.get('.product-information').should('be.visible');\n// Increase quantity to 4\ncy.get('#quantity').clear().type('4');\n// Click 'Add to cart' button\ncy.get('.cart').click();\n// confirm the product\ncy.get('#cartModal > div > div > div.modal-footer > button').click();\n// Click 'View Cart' button\ncy.get('li [href=\"/view_cart\"]').click();\n// Verify cart page is displayed\ncy.get('.cart_info').should('be.visible');\n// Click 'Proceed To Checkout' button again\ncy.contains('Proceed To Checkout').click();\n// Enter description in comment text area and click 'Place Order'\ncy.get('#ordermsg').type('Test order with registration');\ncy.contains('Place Order').click();\n// Click 'Pay and Confirm Order' button\ncy.get('[data-qa=\"name-on-card\"]').type('Amir Hossain');\ncy.get('[data-qa=\"card-number\"]').type('5655-1814-0058-1255');\ncy.get('[data-qa=\"cvc\"]').type('588');\ncy.get('[data-qa=\"expiry-month\"]').type('08/33');\ncy.get('[data-qa=\"expiry-year\"]').type('2033');\ncy.get('[data-qa = \"pay-button\"]').click();\n// Verify success message 'Your order has been placed successfully!'\ncy.contains('Congratulations! Your order has been confirmed!').should('be.visible');\n// Click 'Delete Account' button\ncy.get('#header > div > div > div > div.col-sm-8 > div > ul > li:nth-child(5) > a').click();\n// Verify 'ACCOUNT DELETED!' and click 'Continue' button\ncy.get('[data-qa=\"account-deleted\"]').contains('Account Deleted!');\ncy.get('[data-qa=\"continue-button\"]').click();", - "err": {}, - "uuid": "41a5dc4d-dbeb-4b46-90c4-fa7155bbf08a", - "parentUUID": "cacf74a4-447a-469f-9790-0348a1e7c992", + "err": { + "message": "AssertionError: Timed out retrying after 4000ms: Expected to find element: `#id_gender1`, but never found it.\n\nBecause this error occurred during a `before all` hook we are skipping the remaining tests in the current suite: `Place Order: Register Befor...`", + "estack": "AssertionError: Timed out retrying after 4000ms: Expected to find element: `#id_gender1`, but never found it.\n\nBecause this error occurred during a `before all` hook we are skipping the remaining tests in the current suite: `Place Order: Register Befor...`\n at Context.eval (webpack:///./cypress/e2e/place_order_login_before_checkout.cy.js:21:11)", + "diff": null + }, + "uuid": "b0277ab8-2688-42d5-a25e-b3c85e98690d", + "parentUUID": "7d63d875-6ada-4ea2-9c36-d50cea638234", "isHook": false, "skipped": false } ], "suites": [], - "passes": [ - "41a5dc4d-dbeb-4b46-90c4-fa7155bbf08a" + "passes": [], + "failures": [ + "b0277ab8-2688-42d5-a25e-b3c85e98690d" ], - "failures": [], "pending": [], "skipped": [], - "duration": 56291, + "duration": 48057, "root": false, "rootEmpty": false, "_timeout": 2000 diff --git a/cypress/reports/.jsons/mochawesome_009.json b/cypress/reports/.jsons/mochawesome_009.json index 98038af..999d44c 100644 --- a/cypress/reports/.jsons/mochawesome_009.json +++ b/cypress/reports/.jsons/mochawesome_009.json @@ -2,14 +2,14 @@ "stats": { "suites": 1, "tests": 1, - "passes": 1, + "passes": 0, "pending": 0, - "failures": 0, - "start": "2024-07-11T06:59:25.208Z", - "end": "2024-07-11T07:00:08.075Z", - "duration": 42867, + "failures": 1, + "start": "2024-07-12T16:12:23.452Z", + "end": "2024-07-12T16:13:30.683Z", + "duration": 67231, "testsRegistered": 1, - "passPercent": 100, + "passPercent": 0, "pendingPercent": 0, "other": 0, "hasOther": false, @@ -18,7 +18,7 @@ }, "results": [ { - "uuid": "521c622d-8977-4646-ac8f-594aafbc58fe", + "uuid": "67a08b2d-c284-4e12-93fc-5ebe05576f7a", "title": "", "fullFile": "cypress\\e2e\\place_order_registration_before_checkout.cy.js", "file": "cypress\\e2e\\place_order_registration_before_checkout.cy.js", @@ -27,7 +27,7 @@ "tests": [], "suites": [ { - "uuid": "428edc71-1862-44a4-abc4-6522bfad66c4", + "uuid": "16d472e5-65d8-4447-a619-4fa1f06b8cd9", "title": "Place Order: Register Before Checkout", "fullFile": "", "file": "", @@ -38,29 +38,33 @@ "title": "Register before cart adds products into the cart, and process shippment", "fullTitle": "Place Order: Register Before Checkout Register before cart adds products into the cart, and process shippment", "timedOut": null, - "duration": 37842, - "state": "passed", - "speed": "slow", - "pass": true, - "fail": false, + "duration": 59909, + "state": "failed", + "speed": null, + "pass": false, + "fail": true, "pending": false, - "context": null, + "context": "{\n \"title\": \"cypress-mochawesome-reporter-screenshots\",\n \"value\": [\n [\n \"\\\\place_order_registration_before_checkout.cy.js\\\\Place Order Register Before Checkout -- Register before cart adds products into the cart, and process shippment (failed) (1).png\"\n ]\n ]\n}", "code": "cy.visit('http://automationexercise.com');\n// Verify home page is visible\ncy.get('.logo a>img').should('be.visible');\n//click signup/login button\ncy.contains('Signup / Login').click();\n// Fill all details in Signup and create account\ncy.contains('New User Signup!').should('be.visible');\ncy.get('[data-qa=\"signup-name\"]').type('Amir Hossain');\ncy.get('[data-qa=\"signup-email\"]').type('amir.swe@gmail.com');\ncy.get('[data-qa=\"signup-button\"]').click();\n// Fill in account details\n// Replace '#input' with the actual selectors for each input field\ncy.get('#id_gender1').type('Mr.');\ncy.get('[data-qa=\"password\"]').type('abubakkar90');\ncy.get('[data-qa=\"days\"]').select('1');\ncy.get('[data-qa=\"months\"]').select('January');\ncy.get('[data-qa=\"years\"]').select('1998');\ncy.get('#newsletter').check();\ncy.get('#optin').check();\ncy.get('[data-qa=\"first_name\"]').type('Amir');\ncy.get('[data-qa=\"last_name\"]').type('Hossain');\ncy.get('[data-qa=\"company\"]').type('Test Company');\ncy.get('[data-qa=\"address\"]').type('123 Test St');\ncy.get('[data-qa=\"address2\"]').type('Apt 4B');\ncy.get('#country').select('Canada');\ncy.get('[data-qa=\"state\"]').type('NY');\ncy.get('[data-qa=\"city\"]').type('New York');\ncy.get('[data-qa=\"zipcode\"]').type('10001');\ncy.get('[data-qa=\"mobile_number\"]').type('1234567890');\ncy.get('[data-qa=\"create-account\"]').click();\ncy.get('[data-qa=\"account-created\"]').contains('Account Created!');\ncy.get('[data-qa=\"continue-button\"]').click();\n// Verify ' Logged in as username' at top\ncy.contains('Logged in as Amir Hossain').should('be.visible');\n// add product\ncy.get('.product-image-wrapper .choose > ul >li >a').first().click();\n// Verify product detail is opened\ncy.get('.product-information').should('be.visible');\n// Increase quantity to 4\ncy.get('#quantity').clear().type('4');\n// Click 'Add to cart' button\ncy.get('.cart').click();\n// confirm the product\ncy.get('#cartModal > div > div > div.modal-footer > button').click();\n// Click 'View Cart' button\ncy.get('li [href=\"/view_cart\"]').click();\n// Verify cart page is displayed\ncy.get('.cart_info').should('be.visible');\n// Click 'Proceed To Checkout' button again\ncy.contains('Proceed To Checkout').click();\n// Enter description in comment text area and click 'Place Order'\ncy.get('#ordermsg').type('Test order with registration');\ncy.contains('Place Order').click();\n// Click 'Pay and Confirm Order' button\ncy.get('[data-qa=\"name-on-card\"]').type('Amir Hossain');\ncy.get('[data-qa=\"card-number\"]').type('5655-1814-0058-1255');\ncy.get('[data-qa=\"cvc\"]').type('588');\ncy.get('[data-qa=\"expiry-month\"]').type('08/33');\ncy.get('[data-qa=\"expiry-year\"]').type('2033');\ncy.get('[data-qa = \"pay-button\"]').click();\n// Verify success message 'Your order has been placed successfully!'\ncy.contains('Congratulations! Your order has been confirmed!').should('be.visible');\n// Click 'Delete Account' button\ncy.get('#header > div > div > div > div.col-sm-8 > div > ul > li:nth-child(5) > a').click();\n// Verify 'ACCOUNT DELETED!' and click 'Continue' button\ncy.get('[data-qa=\"account-deleted\"]').contains('Account Deleted!');\ncy.get('[data-qa=\"continue-button\"]').click();", - "err": {}, - "uuid": "92032c41-2c9a-4ebb-898b-06841e9fb8f4", - "parentUUID": "428edc71-1862-44a4-abc4-6522bfad66c4", + "err": { + "message": "AssertionError: Timed out retrying after 4000ms: Expected to find element: `#id_gender1`, but never found it.", + "estack": "AssertionError: Timed out retrying after 4000ms: Expected to find element: `#id_gender1`, but never found it.\n at Context.eval (webpack:///./cypress/e2e/place_order_registration_before_checkout.cy.js:20:11)", + "diff": null + }, + "uuid": "18942ba6-0693-49d4-91af-5f3af4b0dc77", + "parentUUID": "16d472e5-65d8-4447-a619-4fa1f06b8cd9", "isHook": false, "skipped": false } ], "suites": [], - "passes": [ - "92032c41-2c9a-4ebb-898b-06841e9fb8f4" + "passes": [], + "failures": [ + "18942ba6-0693-49d4-91af-5f3af4b0dc77" ], - "failures": [], "pending": [], "skipped": [], - "duration": 37842, + "duration": 59909, "root": false, "rootEmpty": false, "_timeout": 2000 diff --git a/cypress/reports/junit/results-2e7012c629eccd79070d2f23b6b1da70.xml b/cypress/reports/junit/results-2e7012c629eccd79070d2f23b6b1da70.xml deleted file mode 100644 index 8accec2..0000000 --- a/cypress/reports/junit/results-2e7012c629eccd79070d2f23b6b1da70.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-3576da6888b8a7bfbce8183930efb82d.xml b/cypress/reports/junit/results-3576da6888b8a7bfbce8183930efb82d.xml deleted file mode 100644 index 73e7982..0000000 --- a/cypress/reports/junit/results-3576da6888b8a7bfbce8183930efb82d.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-4d73087feb3c34a2fcf5597f68919ac0.xml b/cypress/reports/junit/results-4d73087feb3c34a2fcf5597f68919ac0.xml deleted file mode 100644 index 2ee8fc3..0000000 --- a/cypress/reports/junit/results-4d73087feb3c34a2fcf5597f68919ac0.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-916d3849709520b13bd1437e7a0abda8.xml b/cypress/reports/junit/results-916d3849709520b13bd1437e7a0abda8.xml deleted file mode 100644 index 50ca11d..0000000 --- a/cypress/reports/junit/results-916d3849709520b13bd1437e7a0abda8.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-9c7f70e416f3d8a7093d0d4019f5b3a1.xml b/cypress/reports/junit/results-9c7f70e416f3d8a7093d0d4019f5b3a1.xml deleted file mode 100644 index bc095f2..0000000 --- a/cypress/reports/junit/results-9c7f70e416f3d8a7093d0d4019f5b3a1.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-b685ae0fdbcb125e8f0afc81cdeaf8c9.xml b/cypress/reports/junit/results-b685ae0fdbcb125e8f0afc81cdeaf8c9.xml deleted file mode 100644 index 330985d..0000000 --- a/cypress/reports/junit/results-b685ae0fdbcb125e8f0afc81cdeaf8c9.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-bf426206e6b2f2bed87120a0486dc050.xml b/cypress/reports/junit/results-bf426206e6b2f2bed87120a0486dc050.xml deleted file mode 100644 index a4fc46b..0000000 --- a/cypress/reports/junit/results-bf426206e6b2f2bed87120a0486dc050.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-d6d39d364d2ecd5b7092f991339fbfa9.xml b/cypress/reports/junit/results-d6d39d364d2ecd5b7092f991339fbfa9.xml deleted file mode 100644 index 15cccea..0000000 --- a/cypress/reports/junit/results-d6d39d364d2ecd5b7092f991339fbfa9.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-e56060f876e1fde8249bbaf99b5c2aa2.xml b/cypress/reports/junit/results-e56060f876e1fde8249bbaf99b5c2aa2.xml deleted file mode 100644 index 0d18945..0000000 --- a/cypress/reports/junit/results-e56060f876e1fde8249bbaf99b5c2aa2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-ec9650219f0d9971d6e3b293f6aec41c.xml b/cypress/reports/junit/results-ec9650219f0d9971d6e3b293f6aec41c.xml deleted file mode 100644 index 270cbc5..0000000 --- a/cypress/reports/junit/results-ec9650219f0d9971d6e3b293f6aec41c.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file