diff --git a/cypress/reports/.jsons/mochawesome.json b/cypress/reports/.jsons/mochawesome.json new file mode 100644 index 0000000..1586e4f --- /dev/null +++ b/cypress/reports/.jsons/mochawesome.json @@ -0,0 +1,111 @@ +{ + "stats": { + "suites": 1, + "tests": 1, + "passes": 1, + "pending": 0, + "failures": 0, + "start": "2024-07-09T12:50:14.759Z", + "end": "2024-07-09T12:51:17.180Z", + "duration": 62421, + "testsRegistered": 1, + "passPercent": 100, + "pendingPercent": 0, + "other": 0, + "hasOther": false, + "skipped": 0, + "hasSkipped": false + }, + "results": [ + { + "uuid": "3e2da50a-27d6-4af1-852e-b200f3df4164", + "title": "", + "fullFile": "cypress\\e2e\\add_product_cart.cy.js", + "file": "cypress\\e2e\\add_product_cart.cy.js", + "beforeHooks": [], + "afterHooks": [], + "tests": [], + "suites": [ + { + "uuid": "f67578bd-b240-4ba8-9e46-1cc91bf826f9", + "title": "Test Case 12: Add Products in Cart", + "fullFile": "", + "file": "", + "beforeHooks": [], + "afterHooks": [], + "tests": [ + { + "title": "Add Products in Cart", + "fullTitle": "Test Case 12: Add Products in Cart Add Products in Cart", + "timedOut": null, + "duration": 54846, + "state": "passed", + "speed": "slow", + "pass": true, + "fail": false, + "pending": false, + "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": "8f4889e7-1591-4cf4-8ceb-321299004aff", + "parentUUID": "f67578bd-b240-4ba8-9e46-1cc91bf826f9", + "isHook": false, + "skipped": false + } + ], + "suites": [], + "passes": [ + "8f4889e7-1591-4cf4-8ceb-321299004aff" + ], + "failures": [], + "pending": [], + "skipped": [], + "duration": 54846, + "root": false, + "rootEmpty": false, + "_timeout": 2000 + } + ], + "passes": [], + "failures": [], + "pending": [], + "skipped": [], + "duration": 0, + "root": true, + "rootEmpty": true, + "_timeout": 2000 + } + ], + "meta": { + "mocha": { + "version": "7.0.1" + }, + "mochawesome": { + "options": { + "quiet": false, + "reportFilename": "mochawesome", + "saveHtml": false, + "saveJson": true, + "consoleReporter": "spec", + "useInlineDiffs": false, + "code": true + }, + "version": "7.1.3" + }, + "marge": { + "options": { + "id": "default", + "charts": true, + "reportPageTitle": "custom-title", + "reportDir": "cypress\\reports\\.jsons", + "embeddedScreenshots": true, + "inlineAssets": true, + "saveAllAttempts": true, + "overwrite": false, + "html": false, + "json": true + }, + "version": "6.2.0" + } + } +} \ No newline at end of file diff --git a/cypress/reports/.jsons/mochawesome_001.json b/cypress/reports/.jsons/mochawesome_001.json new file mode 100644 index 0000000..e7a8fd5 --- /dev/null +++ b/cypress/reports/.jsons/mochawesome_001.json @@ -0,0 +1,111 @@ +{ + "stats": { + "suites": 1, + "tests": 1, + "passes": 1, + "pending": 0, + "failures": 0, + "start": "2024-07-09T12:51:22.669Z", + "end": "2024-07-09T12:52:03.287Z", + "duration": 40618, + "testsRegistered": 1, + "passPercent": 100, + "pendingPercent": 0, + "other": 0, + "hasOther": false, + "skipped": 0, + "hasSkipped": false + }, + "results": [ + { + "uuid": "d8bcf7d2-28bc-4a1a-ad1d-6c0deaadfecd", + "title": "", + "fullFile": "cypress\\e2e\\add_review_on_product.cy.js", + "file": "cypress\\e2e\\add_review_on_product.cy.js", + "beforeHooks": [], + "afterHooks": [], + "tests": [], + "suites": [ + { + "uuid": "1091164f-ca3a-48ad-a87f-54963b398724", + "title": "Add review on product", + "fullFile": "", + "file": "", + "beforeHooks": [], + "afterHooks": [], + "tests": [ + { + "title": "adds a review and verifies success message", + "fullTitle": "Add review on product adds a review and verifies success message", + "timedOut": null, + "duration": 34303, + "state": "passed", + "speed": "slow", + "pass": true, + "fail": false, + "pending": false, + "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": "6706c22c-2092-4ef7-b5b0-21c246a9b8a9", + "parentUUID": "1091164f-ca3a-48ad-a87f-54963b398724", + "isHook": false, + "skipped": false + } + ], + "suites": [], + "passes": [ + "6706c22c-2092-4ef7-b5b0-21c246a9b8a9" + ], + "failures": [], + "pending": [], + "skipped": [], + "duration": 34303, + "root": false, + "rootEmpty": false, + "_timeout": 2000 + } + ], + "passes": [], + "failures": [], + "pending": [], + "skipped": [], + "duration": 0, + "root": true, + "rootEmpty": true, + "_timeout": 2000 + } + ], + "meta": { + "mocha": { + "version": "7.0.1" + }, + "mochawesome": { + "options": { + "quiet": false, + "reportFilename": "mochawesome", + "saveHtml": false, + "saveJson": true, + "consoleReporter": "spec", + "useInlineDiffs": false, + "code": true + }, + "version": "7.1.3" + }, + "marge": { + "options": { + "id": "default", + "charts": true, + "reportPageTitle": "custom-title", + "reportDir": "cypress\\reports\\.jsons", + "embeddedScreenshots": true, + "inlineAssets": true, + "saveAllAttempts": true, + "overwrite": false, + "html": false, + "json": true + }, + "version": "6.2.0" + } + } +} \ No newline at end of file diff --git a/cypress/reports/.jsons/mochawesome_002.json b/cypress/reports/.jsons/mochawesome_002.json new file mode 100644 index 0000000..e52166c --- /dev/null +++ b/cypress/reports/.jsons/mochawesome_002.json @@ -0,0 +1,111 @@ +{ + "stats": { + "suites": 1, + "tests": 1, + "passes": 1, + "pending": 0, + "failures": 0, + "start": "2024-07-09T12:52:08.534Z", + "end": "2024-07-09T12:52:33.142Z", + "duration": 24608, + "testsRegistered": 1, + "passPercent": 100, + "pendingPercent": 0, + "other": 0, + "hasOther": false, + "skipped": 0, + "hasSkipped": false + }, + "results": [ + { + "uuid": "c067aab3-b913-47f5-b994-99e061ab866e", + "title": "", + "fullFile": "cypress\\e2e\\add_to_cart_from_recommended_items.cy.js", + "file": "cypress\\e2e\\add_to_cart_from_recommended_items.cy.js", + "beforeHooks": [], + "afterHooks": [], + "tests": [], + "suites": [ + { + "uuid": "c64a014d-7b8e-4fa1-a4dd-655ccb204622", + "title": "Add to cart from Recommended items", + "fullFile": "", + "file": "", + "beforeHooks": [], + "afterHooks": [], + "tests": [ + { + "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": 18231, + "state": "passed", + "speed": "slow", + "pass": true, + "fail": false, + "pending": false, + "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": "33c09cab-6a9a-4a30-9590-b6e573762b59", + "parentUUID": "c64a014d-7b8e-4fa1-a4dd-655ccb204622", + "isHook": false, + "skipped": false + } + ], + "suites": [], + "passes": [ + "33c09cab-6a9a-4a30-9590-b6e573762b59" + ], + "failures": [], + "pending": [], + "skipped": [], + "duration": 18231, + "root": false, + "rootEmpty": false, + "_timeout": 2000 + } + ], + "passes": [], + "failures": [], + "pending": [], + "skipped": [], + "duration": 0, + "root": true, + "rootEmpty": true, + "_timeout": 2000 + } + ], + "meta": { + "mocha": { + "version": "7.0.1" + }, + "mochawesome": { + "options": { + "quiet": false, + "reportFilename": "mochawesome", + "saveHtml": false, + "saveJson": true, + "consoleReporter": "spec", + "useInlineDiffs": false, + "code": true + }, + "version": "7.1.3" + }, + "marge": { + "options": { + "id": "default", + "charts": true, + "reportPageTitle": "custom-title", + "reportDir": "cypress\\reports\\.jsons", + "embeddedScreenshots": true, + "inlineAssets": true, + "saveAllAttempts": true, + "overwrite": false, + "html": false, + "json": true + }, + "version": "6.2.0" + } + } +} \ No newline at end of file diff --git a/cypress/reports/.jsons/mochawesome_003.json b/cypress/reports/.jsons/mochawesome_003.json new file mode 100644 index 0000000..e006dac --- /dev/null +++ b/cypress/reports/.jsons/mochawesome_003.json @@ -0,0 +1,111 @@ +{ + "stats": { + "suites": 1, + "tests": 1, + "passes": 1, + "pending": 0, + "failures": 0, + "start": "2024-07-09T12:52:38.249Z", + "end": "2024-07-09T12:53:03.284Z", + "duration": 25035, + "testsRegistered": 1, + "passPercent": 100, + "pendingPercent": 0, + "other": 0, + "hasOther": false, + "skipped": 0, + "hasSkipped": false + }, + "results": [ + { + "uuid": "960a1871-e97c-4feb-88c2-c2315e09b85e", + "title": "", + "fullFile": "cypress\\e2e\\contact_us.cy.js", + "file": "cypress\\e2e\\contact_us.cy.js", + "beforeHooks": [], + "afterHooks": [], + "tests": [], + "suites": [ + { + "uuid": "853674ac-ea29-4b93-8763-66acc99334ed", + "title": "Contact Us Form", + "fullFile": "", + "file": "", + "beforeHooks": [], + "afterHooks": [], + "tests": [ + { + "title": "Contact Us Form validation checking....", + "fullTitle": "Contact Us Form Contact Us Form validation checking....", + "timedOut": null, + "duration": 18385, + "state": "passed", + "speed": "slow", + "pass": true, + "fail": false, + "pending": false, + "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": "747ded52-f6e6-4061-8fa3-3f4b97da3c40", + "parentUUID": "853674ac-ea29-4b93-8763-66acc99334ed", + "isHook": false, + "skipped": false + } + ], + "suites": [], + "passes": [ + "747ded52-f6e6-4061-8fa3-3f4b97da3c40" + ], + "failures": [], + "pending": [], + "skipped": [], + "duration": 18385, + "root": false, + "rootEmpty": false, + "_timeout": 2000 + } + ], + "passes": [], + "failures": [], + "pending": [], + "skipped": [], + "duration": 0, + "root": true, + "rootEmpty": true, + "_timeout": 2000 + } + ], + "meta": { + "mocha": { + "version": "7.0.1" + }, + "mochawesome": { + "options": { + "quiet": false, + "reportFilename": "mochawesome", + "saveHtml": false, + "saveJson": true, + "consoleReporter": "spec", + "useInlineDiffs": false, + "code": true + }, + "version": "7.1.3" + }, + "marge": { + "options": { + "id": "default", + "charts": true, + "reportPageTitle": "custom-title", + "reportDir": "cypress\\reports\\.jsons", + "embeddedScreenshots": true, + "inlineAssets": true, + "saveAllAttempts": true, + "overwrite": false, + "html": false, + "json": true + }, + "version": "6.2.0" + } + } +} \ No newline at end of file diff --git a/cypress/reports/.jsons/mochawesome_004.json b/cypress/reports/.jsons/mochawesome_004.json new file mode 100644 index 0000000..4d71c37 --- /dev/null +++ b/cypress/reports/.jsons/mochawesome_004.json @@ -0,0 +1,111 @@ +{ + "stats": { + "suites": 1, + "tests": 1, + "passes": 1, + "pending": 0, + "failures": 0, + "start": "2024-07-09T12:53:11.769Z", + "end": "2024-07-09T12:54:25.083Z", + "duration": 73314, + "testsRegistered": 1, + "passPercent": 100, + "pendingPercent": 0, + "other": 0, + "hasOther": false, + "skipped": 0, + "hasSkipped": false + }, + "results": [ + { + "uuid": "def8a987-2176-430e-a3d0-58d15d50b5b2", + "title": "", + "fullFile": "cypress\\e2e\\download_Invoice_after_purchase_order.cy.js", + "file": "cypress\\e2e\\download_Invoice_after_purchase_order.cy.js", + "beforeHooks": [], + "afterHooks": [], + "tests": [], + "suites": [ + { + "uuid": "d28f9ccb-fe05-4264-8f51-0e5ce9fa551a", + "title": "Download Invoice after purchase order", + "fullFile": "", + "file": "", + "beforeHooks": [], + "afterHooks": [], + "tests": [ + { + "title": "should allow downloading invoice after successful purchase", + "fullTitle": "Download Invoice after purchase order should allow downloading invoice after successful purchase", + "timedOut": null, + "duration": 65832, + "state": "passed", + "speed": "slow", + "pass": true, + "fail": false, + "pending": false, + "context": null, + "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": "0328d986-3fe6-417c-96a3-d1f745d62eeb", + "parentUUID": "d28f9ccb-fe05-4264-8f51-0e5ce9fa551a", + "isHook": false, + "skipped": false + } + ], + "suites": [], + "passes": [ + "0328d986-3fe6-417c-96a3-d1f745d62eeb" + ], + "failures": [], + "pending": [], + "skipped": [], + "duration": 65832, + "root": false, + "rootEmpty": false, + "_timeout": 2000 + } + ], + "passes": [], + "failures": [], + "pending": [], + "skipped": [], + "duration": 0, + "root": true, + "rootEmpty": true, + "_timeout": 2000 + } + ], + "meta": { + "mocha": { + "version": "7.0.1" + }, + "mochawesome": { + "options": { + "quiet": false, + "reportFilename": "mochawesome", + "saveHtml": false, + "saveJson": true, + "consoleReporter": "spec", + "useInlineDiffs": false, + "code": true + }, + "version": "7.1.3" + }, + "marge": { + "options": { + "id": "default", + "charts": true, + "reportPageTitle": "custom-title", + "reportDir": "cypress\\reports\\.jsons", + "embeddedScreenshots": true, + "inlineAssets": true, + "saveAllAttempts": true, + "overwrite": false, + "html": false, + "json": true + }, + "version": "6.2.0" + } + } +} \ No newline at end of file diff --git a/cypress/reports/index.html b/cypress/reports/index.html deleted file mode 100644 index 5d78349..0000000 --- a/cypress/reports/index.html +++ /dev/null @@ -1,17 +0,0 @@ - -custom-title
\ No newline at end of file diff --git a/cypress/reports/junit/results-284c2ee230590ef239b36eea134c58cb.xml b/cypress/reports/junit/results-03bcb54d61558a59108aa468cca6e708.xml similarity index 51% rename from cypress/reports/junit/results-284c2ee230590ef239b36eea134c58cb.xml rename to cypress/reports/junit/results-03bcb54d61558a59108aa468cca6e708.xml index cfc7c4a..daab6fd 100644 --- a/cypress/reports/junit/results-284c2ee230590ef239b36eea134c58cb.xml +++ b/cypress/reports/junit/results-03bcb54d61558a59108aa468cca6e708.xml @@ -1,9 +1,9 @@ - - + + - - + + \ No newline at end of file diff --git a/cypress/reports/junit/results-0d0569f1fa26cb1fda445571d2e6d6d6.xml b/cypress/reports/junit/results-07223f493cd2c51919e966bb45561aa5.xml similarity index 59% rename from cypress/reports/junit/results-0d0569f1fa26cb1fda445571d2e6d6d6.xml rename to cypress/reports/junit/results-07223f493cd2c51919e966bb45561aa5.xml index 2b91140..03b637f 100644 --- a/cypress/reports/junit/results-0d0569f1fa26cb1fda445571d2e6d6d6.xml +++ b/cypress/reports/junit/results-07223f493cd2c51919e966bb45561aa5.xml @@ -1,9 +1,9 @@ - - + + - - + + \ No newline at end of file diff --git a/cypress/reports/junit/results-0f6f91d3e18c7442628a894ff851bd80.xml b/cypress/reports/junit/results-0f6f91d3e18c7442628a894ff851bd80.xml deleted file mode 100644 index 80fa063..0000000 --- a/cypress/reports/junit/results-0f6f91d3e18c7442628a894ff851bd80.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-15ad041ff0fb4bdb7510a0382fe071e0.xml b/cypress/reports/junit/results-15ad041ff0fb4bdb7510a0382fe071e0.xml deleted file mode 100644 index 1cbd3cb..0000000 --- a/cypress/reports/junit/results-15ad041ff0fb4bdb7510a0382fe071e0.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-1ff9f9b3276a60e3891cb60530b66716.xml b/cypress/reports/junit/results-1ff9f9b3276a60e3891cb60530b66716.xml deleted file mode 100644 index 691bbe5..0000000 --- a/cypress/reports/junit/results-1ff9f9b3276a60e3891cb60530b66716.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-200982b6eef68ece0fc27c067c0c6903.xml b/cypress/reports/junit/results-200982b6eef68ece0fc27c067c0c6903.xml deleted file mode 100644 index 40e99db..0000000 --- a/cypress/reports/junit/results-200982b6eef68ece0fc27c067c0c6903.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-2d070099cc764b262ee28a2669697803.xml b/cypress/reports/junit/results-2d070099cc764b262ee28a2669697803.xml deleted file mode 100644 index 7dc6ec8..0000000 --- a/cypress/reports/junit/results-2d070099cc764b262ee28a2669697803.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-2d5b75d6eb9804ef1c95be124d02ae8a.xml b/cypress/reports/junit/results-2d5b75d6eb9804ef1c95be124d02ae8a.xml deleted file mode 100644 index 64bcee0..0000000 --- a/cypress/reports/junit/results-2d5b75d6eb9804ef1c95be124d02ae8a.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-2dff9d004267b3a9ad22cb8c4373f213.xml b/cypress/reports/junit/results-2dff9d004267b3a9ad22cb8c4373f213.xml deleted file mode 100644 index 4c1d954..0000000 --- a/cypress/reports/junit/results-2dff9d004267b3a9ad22cb8c4373f213.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-355528ff370b55a4b0a906c7066e7e5d.xml b/cypress/reports/junit/results-355528ff370b55a4b0a906c7066e7e5d.xml deleted file mode 100644 index bd2ffcb..0000000 --- a/cypress/reports/junit/results-355528ff370b55a4b0a906c7066e7e5d.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-3d0e43f35c0dbd218dae684a40844d43.xml b/cypress/reports/junit/results-3d0e43f35c0dbd218dae684a40844d43.xml deleted file mode 100644 index b20f3d5..0000000 --- a/cypress/reports/junit/results-3d0e43f35c0dbd218dae684a40844d43.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-3eb4ca9dfc9e093f30261de98136e92d.xml b/cypress/reports/junit/results-3eb4ca9dfc9e093f30261de98136e92d.xml deleted file mode 100644 index 501363a..0000000 --- a/cypress/reports/junit/results-3eb4ca9dfc9e093f30261de98136e92d.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-46c0559f234141a977f039b7989ee2f4.xml b/cypress/reports/junit/results-46c0559f234141a977f039b7989ee2f4.xml deleted file mode 100644 index 5caa90c..0000000 --- a/cypress/reports/junit/results-46c0559f234141a977f039b7989ee2f4.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-490895f6c0888511d123ef62ef0a2da0.xml b/cypress/reports/junit/results-490895f6c0888511d123ef62ef0a2da0.xml deleted file mode 100644 index b57ed2c..0000000 --- a/cypress/reports/junit/results-490895f6c0888511d123ef62ef0a2da0.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-4ab6856b55f2eb6cacc230565460f7b6.xml b/cypress/reports/junit/results-4ab6856b55f2eb6cacc230565460f7b6.xml deleted file mode 100644 index 0940677..0000000 --- a/cypress/reports/junit/results-4ab6856b55f2eb6cacc230565460f7b6.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-4ec9eb62f8749abf4f357a11117060ac.xml b/cypress/reports/junit/results-4ec9eb62f8749abf4f357a11117060ac.xml deleted file mode 100644 index 22af45b..0000000 --- a/cypress/reports/junit/results-4ec9eb62f8749abf4f357a11117060ac.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-4fd4bb4ff5d703f2ac0de048ab13424f.xml b/cypress/reports/junit/results-4fd4bb4ff5d703f2ac0de048ab13424f.xml deleted file mode 100644 index e139535..0000000 --- a/cypress/reports/junit/results-4fd4bb4ff5d703f2ac0de048ab13424f.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-517f8d889f8a47126966aa486aeb2784.xml b/cypress/reports/junit/results-517f8d889f8a47126966aa486aeb2784.xml deleted file mode 100644 index 6615343..0000000 --- a/cypress/reports/junit/results-517f8d889f8a47126966aa486aeb2784.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-57291fbd72b13c53f9fb1f09b130e2df.xml b/cypress/reports/junit/results-57291fbd72b13c53f9fb1f09b130e2df.xml deleted file mode 100644 index e39fbbb..0000000 --- a/cypress/reports/junit/results-57291fbd72b13c53f9fb1f09b130e2df.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-65c23132c9a506d96b331f9857e24220.xml b/cypress/reports/junit/results-65c23132c9a506d96b331f9857e24220.xml deleted file mode 100644 index b573504..0000000 --- a/cypress/reports/junit/results-65c23132c9a506d96b331f9857e24220.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-72856584461d71a633c9e698302bc96c.xml b/cypress/reports/junit/results-72856584461d71a633c9e698302bc96c.xml deleted file mode 100644 index 8d13940..0000000 --- a/cypress/reports/junit/results-72856584461d71a633c9e698302bc96c.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-748853587c6ddaa2d954b0e845bfeb30.xml b/cypress/reports/junit/results-748853587c6ddaa2d954b0e845bfeb30.xml deleted file mode 100644 index b99358f..0000000 --- a/cypress/reports/junit/results-748853587c6ddaa2d954b0e845bfeb30.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-75dd03e612509207e8b2ee72e14facca.xml b/cypress/reports/junit/results-75dd03e612509207e8b2ee72e14facca.xml deleted file mode 100644 index 53d61ea..0000000 --- a/cypress/reports/junit/results-75dd03e612509207e8b2ee72e14facca.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-77450fd6f129efbf8cb1acd8dacca0c1.xml b/cypress/reports/junit/results-77450fd6f129efbf8cb1acd8dacca0c1.xml deleted file mode 100644 index bf33c15..0000000 --- a/cypress/reports/junit/results-77450fd6f129efbf8cb1acd8dacca0c1.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-7ef1a8685d94d8db3c9bb2ee8fa582fd.xml b/cypress/reports/junit/results-7ef1a8685d94d8db3c9bb2ee8fa582fd.xml deleted file mode 100644 index 3ca1dcc..0000000 --- a/cypress/reports/junit/results-7ef1a8685d94d8db3c9bb2ee8fa582fd.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-85a23f0f4ee6aa72d924c8e4def54a2a.xml b/cypress/reports/junit/results-85a23f0f4ee6aa72d924c8e4def54a2a.xml deleted file mode 100644 index ef6d33b..0000000 --- a/cypress/reports/junit/results-85a23f0f4ee6aa72d924c8e4def54a2a.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-9220e602f9433b6eaa8f57e60bbcb059.xml b/cypress/reports/junit/results-9220e602f9433b6eaa8f57e60bbcb059.xml deleted file mode 100644 index 55a6fcd..0000000 --- a/cypress/reports/junit/results-9220e602f9433b6eaa8f57e60bbcb059.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-a60e03b2a5dd4de5ab297a5ed925cb57.xml b/cypress/reports/junit/results-a60e03b2a5dd4de5ab297a5ed925cb57.xml deleted file mode 100644 index 3d2f172..0000000 --- a/cypress/reports/junit/results-a60e03b2a5dd4de5ab297a5ed925cb57.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-aa5c14f864e6f2d71e00674925b60558.xml b/cypress/reports/junit/results-aa5c14f864e6f2d71e00674925b60558.xml new file mode 100644 index 0000000..2b71df3 --- /dev/null +++ b/cypress/reports/junit/results-aa5c14f864e6f2d71e00674925b60558.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/cypress/reports/junit/results-ae8458e2dff0d29d0e7d114264af7116.xml b/cypress/reports/junit/results-ae8458e2dff0d29d0e7d114264af7116.xml deleted file mode 100644 index b70d35f..0000000 --- a/cypress/reports/junit/results-ae8458e2dff0d29d0e7d114264af7116.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-b32a0b39c7c13423c4171e60877d0df9.xml b/cypress/reports/junit/results-b32a0b39c7c13423c4171e60877d0df9.xml deleted file mode 100644 index f0a8e2d..0000000 --- a/cypress/reports/junit/results-b32a0b39c7c13423c4171e60877d0df9.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-b361dd3afee181110c13ad59c5ce18ba.xml b/cypress/reports/junit/results-b361dd3afee181110c13ad59c5ce18ba.xml deleted file mode 100644 index 4f79e01..0000000 --- a/cypress/reports/junit/results-b361dd3afee181110c13ad59c5ce18ba.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-b51ca710ec1597d81bdeecbabc2d11cd.xml b/cypress/reports/junit/results-b51ca710ec1597d81bdeecbabc2d11cd.xml deleted file mode 100644 index 9df2051..0000000 --- a/cypress/reports/junit/results-b51ca710ec1597d81bdeecbabc2d11cd.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-c5c9655facc7841a64f163cb8fe810d9.xml b/cypress/reports/junit/results-c5c9655facc7841a64f163cb8fe810d9.xml new file mode 100644 index 0000000..a2ad5c9 --- /dev/null +++ b/cypress/reports/junit/results-c5c9655facc7841a64f163cb8fe810d9.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/cypress/reports/junit/results-cc3461dcb4cf288353108d9347dcd5e1.xml b/cypress/reports/junit/results-cc3461dcb4cf288353108d9347dcd5e1.xml deleted file mode 100644 index bdce9e0..0000000 --- a/cypress/reports/junit/results-cc3461dcb4cf288353108d9347dcd5e1.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-d8ba09f70edf5bf745cc4cb9bca80184.xml b/cypress/reports/junit/results-d8ba09f70edf5bf745cc4cb9bca80184.xml deleted file mode 100644 index 709ea9b..0000000 --- a/cypress/reports/junit/results-d8ba09f70edf5bf745cc4cb9bca80184.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-de96e906d00ae1a710181f3810fd1b55.xml b/cypress/reports/junit/results-de96e906d00ae1a710181f3810fd1b55.xml deleted file mode 100644 index 96f0855..0000000 --- a/cypress/reports/junit/results-de96e906d00ae1a710181f3810fd1b55.xml +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - (https://automationexercise.com/__cypress/runner/cypress_runner.js:130827:16) - at tryCatcher (https://automationexercise.com/__cypress/runner/cypress_runner.js:1807:23) - at (https://automationexercise.com/__cypress/runner/cypress_runner.js:4186:41) - at tryCatcher (https://automationexercise.com/__cypress/runner/cypress_runner.js:1807:23) - at Promise._settlePromiseFromHandler (https://automationexercise.com/__cypress/runner/cypress_runner.js:1519:31) - at Promise._settlePromise (https://automationexercise.com/__cypress/runner/cypress_runner.js:1576:18) - at Promise._settlePromise0 (https://automationexercise.com/__cypress/runner/cypress_runner.js:1621:10) - at Promise._settlePromises (https://automationexercise.com/__cypress/runner/cypress_runner.js:1697:18) - at _drainQueueStep (https://automationexercise.com/__cypress/runner/cypress_runner.js:2407:12) - at _drainQueue (https://automationexercise.com/__cypress/runner/cypress_runner.js:2400:9) - at Async._drainQueues (https://automationexercise.com/__cypress/runner/cypress_runner.js:2416:5) - at Async.drainQueues (https://automationexercise.com/__cypress/runner/cypress_runner.js:2286:14) -From Your Spec Code: - at Context.eval (webpack:///./cypress/e2e/place_order_login_before_checkout.cy.js:42:11)]]> - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-df0a6fd6d4f33abfc69b7fc813121757.xml b/cypress/reports/junit/results-df0a6fd6d4f33abfc69b7fc813121757.xml deleted file mode 100644 index c46be67..0000000 --- a/cypress/reports/junit/results-df0a6fd6d4f33abfc69b7fc813121757.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-e66427581e710004282f8dbc5970c156.xml b/cypress/reports/junit/results-e66427581e710004282f8dbc5970c156.xml deleted file mode 100644 index 35036bd..0000000 --- a/cypress/reports/junit/results-e66427581e710004282f8dbc5970c156.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-f93cd7aae5ddc7d8ef178d0166ac7c63.xml b/cypress/reports/junit/results-f93cd7aae5ddc7d8ef178d0166ac7c63.xml deleted file mode 100644 index 658f753..0000000 --- a/cypress/reports/junit/results-f93cd7aae5ddc7d8ef178d0166ac7c63.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/cypress/reports/junit/results-9e3ed8d91e7d1a90987bd992100ae7a7.xml b/cypress/reports/junit/results-fca84fb9f2b977e439a205da51af701c.xml similarity index 55% rename from cypress/reports/junit/results-9e3ed8d91e7d1a90987bd992100ae7a7.xml rename to cypress/reports/junit/results-fca84fb9f2b977e439a205da51af701c.xml index afab0ed..7970820 100644 --- a/cypress/reports/junit/results-9e3ed8d91e7d1a90987bd992100ae7a7.xml +++ b/cypress/reports/junit/results-fca84fb9f2b977e439a205da51af701c.xml @@ -1,9 +1,9 @@ - - + + - - + + \ No newline at end of file diff --git a/cypress/reports/junit/results-fe2a8f227b9196fd123ed66859b39688.xml b/cypress/reports/junit/results-fe2a8f227b9196fd123ed66859b39688.xml deleted file mode 100644 index 13f1ce8..0000000 --- a/cypress/reports/junit/results-fe2a8f227b9196fd123ed66859b39688.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file