├── Execution Demo.mp4 ├── README.md ├── automation.out ├── images ├── allure-graph.png ├── allure-report.PNG ├── allure-timeline.png ├── allure-xunit.PNG ├── allure-xunit1.PNG ├── allure-xunit2.PNG ├── behavior1.PNG ├── behavior2.PNG ├── cucucmber-pretty.pdf ├── cucumber-advance.pdf ├── cucumber-advance1.png ├── cucumber-advanced2.PNG ├── cucumber-pretty-advanced.PNG ├── cucumber-pretty1.PNG ├── cucumber-pretty2.png └── directoryStructure.PNG ├── log4j.properties ├── pom.xml ├── src ├── main │ └── java │ │ └── com │ │ └── cucumberFramework │ │ ├── enums │ │ ├── Browsers.java │ │ └── OS.java │ │ ├── helper │ │ ├── Constants.java │ │ ├── LoggerHelper.java │ │ └── WaitHelper.java │ │ ├── pageObjects │ │ └── LoginLogoutPage.java │ │ ├── stepdefinitions │ │ ├── ServiceHooks.java │ │ └── loginLogoutPageStepDefinitions.java │ │ ├── testBase │ │ └── TestBase.java │ │ └── testRunner │ │ └── TestRunner.java └── test │ └── resources │ ├── drivers │ ├── chromedriver │ └── chromedriver.exe │ └── features │ └── login │ └── login_logout.feature ├── target ├── allure-results │ ├── 174a1f3d-4f45-4048-91c9-c6b20dbd3b87-attachment.png │ ├── 2d2921ff-c1d3-43e6-872a-65c76a32a84a-attachment.png │ ├── 3f398609-5a30-4bc1-bf89-446359fa0fa3-testsuite.xml │ ├── 552e1c3f-ff78-42a2-85a8-fd90e294dd60-attachment.png │ ├── 5ae4eb98-65ac-4803-b647-24b0861160cf-attachment.png │ ├── 71cfe494-e278-4ef0-a457-fd96822b92d0-attachment.png │ ├── 77534ed3-5114-42e3-bd58-3205df25e53b-attachment.png │ ├── 789ee847-a4ef-4bd8-9a54-7ca80aa1c2c5-attachment.png │ ├── 91ed7cbc-0575-4514-9df2-47d47a50db5a-testsuite.xml │ └── c119fc0f-cce5-4ac0-8499-0cdad18db7c4-attachment.png ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com │ │ │ └── cucumberFramework │ │ │ ├── pom.properties │ │ │ └── pom.xml │ └── com │ │ └── cucumberFramework │ │ ├── enums │ │ ├── Browsers.class │ │ └── OS.class │ │ ├── helper │ │ ├── Constants.class │ │ ├── LoggerHelper.class │ │ └── WaitHelper.class │ │ ├── pageObjects │ │ └── LoginLogoutPage.class │ │ ├── stepdefinitions │ │ ├── ServiceHooks.class │ │ └── loginLogoutPageStepDefinitions.class │ │ ├── testBase │ │ └── TestBase.class │ │ └── testRunner │ │ └── TestRunner.class ├── cucumber-reports │ ├── CucumberTestReport.json │ ├── advanced-reports │ │ └── cucumber-html-reports │ │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ ├── cucumber.css │ │ │ └── font-awesome.min.css │ │ │ ├── embeddings │ │ │ ├── embedding_-941236087.png │ │ │ ├── embedding_1572204334.png │ │ │ ├── embedding_89814534.png │ │ │ └── embedding_917744814.png │ │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ ├── images │ │ │ └── favicon.png │ │ │ ├── js │ │ │ ├── Chart.min.js │ │ │ ├── bootstrap.min.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.tablesorter.min.js │ │ │ └── moment.min.js │ │ │ ├── overview-failures.html │ │ │ ├── overview-features.html │ │ │ ├── overview-steps.html │ │ │ ├── overview-tags.html │ │ │ └── report-feature_src-test-resources-features-login-login_logout-feature.html │ ├── cucumber-pretty │ │ ├── embedded0.png │ │ ├── embedded1.png │ │ ├── embedded2.png │ │ ├── embedded3.png │ │ ├── formatter.js │ │ ├── index.html │ │ ├── jquery-1.8.2.min.js │ │ ├── report.js │ │ └── style.css │ └── rerun.txt ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst ├── site │ ├── allure-maven-plugin.html │ ├── allure-maven-plugin │ │ ├── 1e07e63bbecccb93b06ffd6b43b46e4d.svg │ │ ├── 3fb9611bab3151e965e023162e86089a.svg │ │ ├── 61aae920ab2f8fe604ba57b135aa9919.png │ │ ├── 64b1e3c3d94863c86e92e89aea3a5c99.svg │ │ ├── 674f50d287a8c48dc19ba404d20fe713.eot │ │ ├── 912ec66d7572ff821749319396470bde.svg │ │ ├── af7ae505a9eed503f8b8e6982036873e.woff2 │ │ ├── app.js │ │ ├── b06871f281fee6b241d60582ae9369b9.ttf │ │ ├── data │ │ │ ├── 174a1f3d-4f45-4048-91c9-c6b20dbd3b87-attachment.png │ │ │ ├── 215067456f4409ae-testcase.json │ │ │ ├── 27da5f7fbd7cdaa-testcase.json │ │ │ ├── 2d2921ff-c1d3-43e6-872a-65c76a32a84a-attachment.png │ │ │ ├── 552e1c3f-ff78-42a2-85a8-fd90e294dd60-attachment.png │ │ │ ├── 5ae4eb98-65ac-4803-b647-24b0861160cf-attachment.png │ │ │ ├── 6c351f2514930faa-testcase.json │ │ │ ├── 71cfe494-e278-4ef0-a457-fd96822b92d0-attachment.png │ │ │ ├── 77534ed3-5114-42e3-bd58-3205df25e53b-attachment.png │ │ │ ├── 789ee847-a4ef-4bd8-9a54-7ca80aa1c2c5-attachment.png │ │ │ ├── behaviors.json │ │ │ ├── c119fc0f-cce5-4ac0-8499-0cdad18db7c4-attachment.png │ │ │ ├── c64b0dcacfd90108-testcase.json │ │ │ ├── defects.json │ │ │ ├── environment.json │ │ │ ├── graph.json │ │ │ ├── plugins.json │ │ │ ├── report.json │ │ │ ├── timeline.json │ │ │ ├── total.json │ │ │ ├── widgets.json │ │ │ └── xunit.json │ │ ├── f8ddfbfcb1a4e191ee1fa7f98417280e.svg │ │ ├── fa4b5e31eae6378a0dfa9e10cfb9262f.svg │ │ ├── favicon.ico │ │ ├── fee66e712a8a08eef5805a46892932ad.woff │ │ ├── index.html │ │ └── styles.css │ ├── css │ │ ├── maven-base.css │ │ ├── maven-theme.css │ │ ├── print.css │ │ └── site.css │ ├── images │ │ ├── collapsed.gif │ │ ├── expanded.gif │ │ ├── external.png │ │ ├── icon_error_sml.gif │ │ ├── icon_info_sml.gif │ │ ├── icon_success_sml.gif │ │ ├── icon_warning_sml.gif │ │ ├── logos │ │ │ ├── build-by-maven-black.png │ │ │ ├── build-by-maven-white.png │ │ │ └── maven-feather.png │ │ └── newwindow.png │ └── project-reports.html ├── surefire-reports │ ├── BDD Test Suite │ │ ├── Regression Test.html │ │ ├── Regression Test.xml │ │ └── testng-failed.xml │ ├── TEST-TestSuite.xml │ ├── TestSuite.txt │ ├── bullet_point.png │ ├── collapseall.gif │ ├── emailable-report.html │ ├── failed.png │ ├── index.html │ ├── jquery-1.7.1.min.js │ ├── junitreports │ │ └── TEST-com.cucumberFramework.testRunner.TestRunner.xml │ ├── navigator-bullet.png │ ├── old │ │ ├── BDD Test Suite │ │ │ ├── Regression Test.properties │ │ │ ├── classes.html │ │ │ ├── groups.html │ │ │ ├── index.html │ │ │ ├── main.html │ │ │ ├── methods-alphabetical.html │ │ │ ├── methods-not-run.html │ │ │ ├── methods.html │ │ │ ├── reporter-output.html │ │ │ ├── testng.xml.html │ │ │ └── toc.html │ │ └── index.html │ ├── passed.png │ ├── skipped.png │ ├── testng-failed.xml │ ├── testng-reports.css │ ├── testng-reports.js │ ├── testng-results.xml │ └── testng.css └── test-classes │ ├── drivers │ ├── chromedriver │ └── chromedriver.exe │ └── features │ └── login │ └── login_logout.feature ├── test-output ├── BDD Test Suite │ ├── Regression Test.html │ ├── Regression Test.xml │ └── testng-failed.xml ├── Default suite │ ├── Default test.html │ ├── Default test.xml │ └── testng-failed.xml ├── bullet_point.png ├── collapseall.gif ├── emailable-report.html ├── failed.png ├── index.html ├── jquery-1.7.1.min.js ├── junitreports │ └── TEST-com.cucumberFramework.testRunner.TestRunner.xml ├── navigator-bullet.png ├── old │ ├── BDD Test Suite │ │ ├── Regression Test.properties │ │ ├── classes.html │ │ ├── groups.html │ │ ├── index.html │ │ ├── main.html │ │ ├── methods-alphabetical.html │ │ ├── methods-not-run.html │ │ ├── methods.html │ │ ├── reporter-output.html │ │ ├── testng.xml.html │ │ └── toc.html │ ├── Default suite │ │ ├── Default test.properties │ │ ├── classes.html │ │ ├── groups.html │ │ ├── index.html │ │ ├── main.html │ │ ├── methods-alphabetical.html │ │ ├── methods-not-run.html │ │ ├── methods.html │ │ ├── reporter-output.html │ │ ├── testng.xml.html │ │ └── toc.html │ └── index.html ├── passed.png ├── skipped.png ├── testng-failed.xml ├── testng-reports.css ├── testng-reports.js ├── testng-results.xml └── testng.css └── testNg.xml /Execution Demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/Execution Demo.mp4 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
from bootstrap library. 66 | padding and overflow-x added. 67 | */ 68 | .embedding-content { 69 | padding: 10px; 70 | margin-left: 10px; 71 | margin-right: 10px; 72 | margin-bottom: 10px; 73 | font-size: 13px; 74 | overflow-x: auto; 75 | line-height: 1.42857143; 76 | color: #333; 77 | word-break: break-all; 78 | word-wrap: break-word; 79 | background-color: #f5f5f5; 80 | border: 1px solid #ccc; 81 | border-radius: 4px; 82 | } 83 | 84 | .html-content { 85 | position: relative; 86 | /* proportion value to aspect ratio 16:9 (9 / 16 = 0.5625 or 56.25%) */ 87 | padding: 0 0 56.25%; 88 | height: 0; 89 | overflow: hidden; 90 | } 91 | 92 | .html-content iframe { 93 | position: absolute; 94 | top: 0; 95 | left: 0; 96 | width: 100%; 97 | height: 100%; 98 | border:none; 99 | } 100 | 101 | .download-button { 102 | float: right; 103 | margin-right: 10px; 104 | color: #333; 105 | } 106 | 107 | /* names of those classes must be the same as name of the statuses (to lower case) in Status class */ 108 | .passed { 109 | background-color: #92DD96; 110 | } 111 | 112 | .failed { 113 | background-color: #F2928C; 114 | } 115 | 116 | .skipped { 117 | background-color: #8AF; 118 | } 119 | 120 | .pending { 121 | background-color: #F5F28F; 122 | } 123 | 124 | .undefined { 125 | background-color: #F5B975; 126 | } 127 | 128 | .lead-duration { 129 | float: right; 130 | padding-right: 15px; 131 | } 132 | 133 | table.stats-table { 134 | background-color: white; 135 | color: black; 136 | margin-bottom: 20px; 137 | width: 100%; 138 | } 139 | 140 | table.stats-table th, table.stats-table td { 141 | border: 1px solid gray; 142 | padding: 5px; 143 | text-align: center; 144 | } 145 | 146 | table.stats-table tr.header { 147 | background-color: #66CCEE; 148 | } 149 | 150 | table.stats-table tfoot { 151 | font-weight: bold; 152 | } 153 | 154 | tfoot.total, td.total, th.total { 155 | background-color: lightgray; 156 | } 157 | 158 | table.stats-table td.duration { 159 | text-align: right; 160 | white-space: nowrap; 161 | } 162 | 163 | table.stats-table td.tagname { 164 | text-align: left; 165 | } 166 | 167 | table.stats-table td.location, .location { 168 | font-family: monospace; 169 | text-align: left; 170 | } 171 | 172 | table.step-arguments { 173 | margin-bottom: 5px; 174 | margin-left: 25px; 175 | margin-top: 3px; 176 | } 177 | 178 | table.step-arguments th, table.step-arguments td { 179 | border: 1px solid gray; 180 | padding: 3px; 181 | text-align: left; 182 | } 183 | 184 | table#tablesorter thead tr:not(.dont-sort) th { 185 | cursor: pointer; 186 | } 187 | 188 | tr:hover { 189 | transition: background-color 0.3s; 190 | } 191 | 192 | .collapsable-control { 193 | cursor: pointer; 194 | } 195 | 196 | .chevron:after { 197 | content: "\f078"; 198 | } 199 | 200 | .collapsed .chevron:after { 201 | content: "\f054"; 202 | } 203 | 204 | .footer { 205 | font-size: smaller; 206 | text-align: center; 207 | margin-top: 30px; 208 | } 209 | 210 | 211 | 212 | /* Custom Bootstrap CSS overloading. */ 213 | .carousel-indicators { 214 | bottom: 0; 215 | } 216 | 217 | .carousel-indicators li { 218 | border: 1px solid black; 219 | } 220 | 221 | .carousel-indicators .active { 222 | background-color: black; 223 | } 224 | 225 | .carousel-control { 226 | font-size: 40px; 227 | padding-top: 150px;; 228 | } 229 | 230 | .carousel-control.right, .carousel-control.left { 231 | background-image: none; 232 | color: #eee; 233 | } 234 | 235 | pre { 236 | margin: 10px; 237 | } 238 | -------------------------------------------------------------------------------- /target/cucumber-reports/advanced-reports/cucumber-html-reports/embeddings/embedding_-941236087.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/cucumber-reports/advanced-reports/cucumber-html-reports/embeddings/embedding_-941236087.png -------------------------------------------------------------------------------- /target/cucumber-reports/advanced-reports/cucumber-html-reports/embeddings/embedding_1572204334.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/cucumber-reports/advanced-reports/cucumber-html-reports/embeddings/embedding_1572204334.png -------------------------------------------------------------------------------- /target/cucumber-reports/advanced-reports/cucumber-html-reports/embeddings/embedding_89814534.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/cucumber-reports/advanced-reports/cucumber-html-reports/embeddings/embedding_89814534.png -------------------------------------------------------------------------------- /target/cucumber-reports/advanced-reports/cucumber-html-reports/embeddings/embedding_917744814.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/cucumber-reports/advanced-reports/cucumber-html-reports/embeddings/embedding_917744814.png -------------------------------------------------------------------------------- /target/cucumber-reports/advanced-reports/cucumber-html-reports/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/cucumber-reports/advanced-reports/cucumber-html-reports/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /target/cucumber-reports/advanced-reports/cucumber-html-reports/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/cucumber-reports/advanced-reports/cucumber-html-reports/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /target/cucumber-reports/advanced-reports/cucumber-html-reports/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/cucumber-reports/advanced-reports/cucumber-html-reports/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /target/cucumber-reports/advanced-reports/cucumber-html-reports/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/cucumber-reports/advanced-reports/cucumber-html-reports/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /target/cucumber-reports/advanced-reports/cucumber-html-reports/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/cucumber-reports/advanced-reports/cucumber-html-reports/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /target/cucumber-reports/advanced-reports/cucumber-html-reports/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/cucumber-reports/advanced-reports/cucumber-html-reports/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /target/cucumber-reports/advanced-reports/cucumber-html-reports/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/cucumber-reports/advanced-reports/cucumber-html-reports/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /target/cucumber-reports/advanced-reports/cucumber-html-reports/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/cucumber-reports/advanced-reports/cucumber-html-reports/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /target/cucumber-reports/advanced-reports/cucumber-html-reports/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/cucumber-reports/advanced-reports/cucumber-html-reports/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /target/cucumber-reports/advanced-reports/cucumber-html-reports/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/cucumber-reports/advanced-reports/cucumber-html-reports/images/favicon.png -------------------------------------------------------------------------------- /target/cucumber-reports/advanced-reports/cucumber-html-reports/overview-failures.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 |Cucumber Reports (no 1) - Failures Overview 46 | 47 | 48 | 49 | 50 | 51 | 64 | 65 | 66 |67 |90 | 91 | 92 |68 | 69 |87 |70 | 71 |
85 | 86 |72 | 76 | 77 | 78 |Project 73 |Number 74 |Date 75 |79 | 83 | 84 |MyProjectName 80 |1 81 |12 Apr 2019, 12:01 82 |88 |89 |93 |98 | 99 | 100 |94 |97 |Failures Overview
95 |The following summary displays scenarios that failed.
96 |101 |110 | 111 | 112 |102 |109 |103 | 105 | 107 |108 |113 |121 | 122 | 123 |114 |120 |115 | 116 |119 |You have no failed scenarios in your Cucumber report
117 | 118 |124 |133 | 134 |125 |132 |126 | 128 | 130 |131 |
135 | 136 | 148 | 149 | 150 | 151 | -------------------------------------------------------------------------------- /target/cucumber-reports/advanced-reports/cucumber-html-reports/overview-tags.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 |Cucumber Reports (no 1) - Tags Overview 46 | 47 | 48 | 101 | 102 | 103 | 104 | 117 | 118 | 119 |120 |143 | 144 | 145 |121 | 122 |140 |123 | 124 |
138 | 139 |125 | 129 | 130 | 131 |Project 126 |Number 127 |Date 128 |132 | 136 | 137 |MyProjectName 133 |1 134 |12 Apr 2019, 12:01 135 |141 |142 |146 |151 | 152 | 153 | 154 |147 |150 |Tags Statistics
148 |The following graph shows passing and failing statistics for tags
149 |
155 |156 |162 | 163 | 175 | 176 | 177 | 178 | -------------------------------------------------------------------------------- /target/cucumber-reports/cucumber-pretty/embedded0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/cucumber-reports/cucumber-pretty/embedded0.png -------------------------------------------------------------------------------- /target/cucumber-reports/cucumber-pretty/embedded1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/cucumber-reports/cucumber-pretty/embedded1.png -------------------------------------------------------------------------------- /target/cucumber-reports/cucumber-pretty/embedded2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/cucumber-reports/cucumber-pretty/embedded2.png -------------------------------------------------------------------------------- /target/cucumber-reports/cucumber-pretty/embedded3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/cucumber-reports/cucumber-pretty/embedded3.png -------------------------------------------------------------------------------- /target/cucumber-reports/cucumber-pretty/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |157 |161 |158 |160 |You have no tags in your cucumber report
159 |Cucumber Features 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /target/cucumber-reports/cucumber-pretty/style.css: -------------------------------------------------------------------------------- 1 | .cucumber-report .body { 2 | font-family: Helvetica,Arial,sans-serif; 3 | } 4 | 5 | .cucumber-report .keyword { 6 | font-weight: bold; 7 | } 8 | 9 | .cucumber-report .description { 10 | font-style: italic; 11 | margin-left: 20px; 12 | } 13 | 14 | .cucumber-report details > section { 15 | margin-left: 20px; 16 | } 17 | 18 | .cucumber-report ol.steps { 19 | list-style-type: none; 20 | margin-top: 0; 21 | margin-bottom: 0; 22 | } 23 | 24 | .cucumber-report .step .embedded-text { 25 | background: #dddddd; 26 | } 27 | 28 | .cucumber-report .doc_string { 29 | margin: 0 0 0 20px; 30 | } 31 | 32 | .cucumber-report table { 33 | border-collapse: collapse; 34 | border: 1px; 35 | border-style: solid; 36 | } 37 | 38 | .cucumber-report td, .cucumber-report th { 39 | border: 1px; 40 | border-style: solid; 41 | padding-left: 4px; 42 | padding-right: 4px; 43 | } 44 | 45 | .cucumber-report table { 46 | margin-left: 20px; 47 | } 48 | 49 | .cucumber-report thead { 50 | background-color: #C0C0C0; 51 | } 52 | 53 | .cucumber-report .passed { 54 | background-color: #C5D88A; 55 | } 56 | 57 | .cucumber-report .undefined, .cucumber-report .pending { 58 | background-color: #EAEC2D; 59 | } 60 | 61 | .cucumber-report .skipped { 62 | background-color: #2DEAEC; 63 | } 64 | 65 | .cucumber-report .failed { 66 | background-color: #D88A8A; 67 | } 68 | 69 | .cucumber-report .tags { 70 | display: inline; 71 | } 72 | 73 | .cucumber-report .tag { 74 | margin-right: 0.25em; 75 | color: #246ac1; 76 | } 77 | 78 | .cucumber-report .comments { 79 | display: inline; 80 | } 81 | 82 | .cucumber-report .comment { 83 | margin 0; 84 | padding 0; 85 | } 86 | 87 | .cucumber-report .error { 88 | margin: .2em .75em; 89 | padding: .2em; 90 | border: 1px solid #900; 91 | background-color: #EDBBBB; 92 | } 93 | 94 | #cucumber-templates { 95 | display: none; 96 | } 97 | -------------------------------------------------------------------------------- /target/cucumber-reports/rerun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/cucumber-reports/rerun.txt -------------------------------------------------------------------------------- /target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | com\cucumberFramework\helper\Constants.class 2 | com\cucumberFramework\stepdefinitions\loginLogoutPageStepDefinitions.class 3 | com\cucumberFramework\enums\Browsers.class 4 | com\cucumberFramework\helper\WaitHelper.class 5 | com\cucumberFramework\stepdefinitions\ServiceHooks.class 6 | com\cucumberFramework\testBase\TestBase.class 7 | com\cucumberFramework\pageObjects\LoginLogoutPage.class 8 | com\cucumberFramework\testRunner\TestRunner.class 9 | com\cucumberFramework\helper\LoggerHelper.class 10 | com\cucumberFramework\enums\OS.class 11 | -------------------------------------------------------------------------------- /target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst: -------------------------------------------------------------------------------- 1 | C:\Eclipse\Workspace\CucumberAutomationDemo\latestCucumberSeleniumFramework-master\src\main\java\com\cucumberFramework\stepdefinitions\ServiceHooks.java 2 | C:\Eclipse\Workspace\CucumberAutomationDemo\latestCucumberSeleniumFramework-master\src\main\java\com\cucumberFramework\enums\OS.java 3 | C:\Eclipse\Workspace\CucumberAutomationDemo\latestCucumberSeleniumFramework-master\src\main\java\com\cucumberFramework\helper\LoggerHelper.java 4 | C:\Eclipse\Workspace\CucumberAutomationDemo\latestCucumberSeleniumFramework-master\src\main\java\com\cucumberFramework\helper\Constants.java 5 | C:\Eclipse\Workspace\CucumberAutomationDemo\latestCucumberSeleniumFramework-master\src\main\java\com\cucumberFramework\helper\WaitHelper.java 6 | C:\Eclipse\Workspace\CucumberAutomationDemo\latestCucumberSeleniumFramework-master\src\main\java\com\cucumberFramework\stepdefinitions\loginLogoutPageStepDefinitions.java 7 | C:\Eclipse\Workspace\CucumberAutomationDemo\latestCucumberSeleniumFramework-master\src\main\java\com\cucumberFramework\testBase\TestBase.java 8 | C:\Eclipse\Workspace\CucumberAutomationDemo\latestCucumberSeleniumFramework-master\src\main\java\com\cucumberFramework\pageObjects\LoginLogoutPage.java 9 | C:\Eclipse\Workspace\CucumberAutomationDemo\latestCucumberSeleniumFramework-master\src\main\java\com\cucumberFramework\enums\Browsers.java 10 | C:\Eclipse\Workspace\CucumberAutomationDemo\latestCucumberSeleniumFramework-master\src\main\java\com\cucumberFramework\testRunner\TestRunner.java 11 | -------------------------------------------------------------------------------- /target/site/allure-maven-plugin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |cucumberFramework - Allure 7 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 26 | 41 |42 |63 | 62 |64 |68 |65 |67 |
66 |69 |71 | 81 | 82 | 83 | -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/1e07e63bbecccb93b06ffd6b43b46e4d.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 12 | -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/3fb9611bab3151e965e023162e86089a.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/61aae920ab2f8fe604ba57b135aa9919.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/site/allure-maven-plugin/61aae920ab2f8fe604ba57b135aa9919.png -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/64b1e3c3d94863c86e92e89aea3a5c99.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/674f50d287a8c48dc19ba404d20fe713.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/site/allure-maven-plugin/674f50d287a8c48dc19ba404d20fe713.eot -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/af7ae505a9eed503f8b8e6982036873e.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/site/allure-maven-plugin/af7ae505a9eed503f8b8e6982036873e.woff2 -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/b06871f281fee6b241d60582ae9369b9.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/site/allure-maven-plugin/b06871f281fee6b241d60582ae9369b9.ttf -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/data/174a1f3d-4f45-4048-91c9-c6b20dbd3b87-attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/site/allure-maven-plugin/data/174a1f3d-4f45-4048-91c9-c6b20dbd3b87-attachment.png -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/data/215067456f4409ae-testcase.json: -------------------------------------------------------------------------------- 1 | { 2 | "uid" : "215067456f4409ae", 3 | "name" : "Searching different products after login", 4 | "title" : "Searching different products after login", 5 | "time" : { 6 | "start" : 1564864490843, 7 | "stop" : 1564864519797, 8 | "duration" : 28954 9 | }, 10 | "summary" : { 11 | "attachments" : 1, 12 | "steps" : 9 13 | }, 14 | "failure" : null, 15 | "description" : { 16 | "value" : null, 17 | "type" : "TEXT" 18 | }, 19 | "severity" : "NORMAL", 20 | "status" : "PASSED", 21 | "suite" : { 22 | "uid" : "75616540e63606ea", 23 | "name" : "As a Amazon user I should be able to login and logout with valid credentials", 24 | "title" : "As a amazon user I should be able to login and logout with valid credentials" 25 | }, 26 | "steps" : [ { 27 | "name" : "Given I am on the Login page URL \"https://www.amazon.in/\"", 28 | "title" : "Given I am on the Login page URL \"https://www.amazon.in/\"", 29 | "time" : { 30 | "start" : 1564864495524, 31 | "stop" : 1564864499805, 32 | "duration" : 4281 33 | }, 34 | "summary" : { 35 | "attachments" : 0, 36 | "steps" : 0 37 | }, 38 | "status" : "PASSED", 39 | "attachments" : [ ], 40 | "steps" : [ ] 41 | }, { 42 | "name" : "Then I click on sign in button and wait for sign in page", 43 | "title" : "Then I click on sign in button and wait for sign in page", 44 | "time" : { 45 | "start" : 1564864499805, 46 | "stop" : 1564864502887, 47 | "duration" : 3082 48 | }, 49 | "summary" : { 50 | "attachments" : 0, 51 | "steps" : 0 52 | }, 53 | "status" : "PASSED", 54 | "attachments" : [ ], 55 | "steps" : [ ] 56 | }, { 57 | "name" : "Then I should see Sign In Page", 58 | "title" : "Then I should see Sign In Page", 59 | "time" : { 60 | "start" : 1564864502888, 61 | "stop" : 1564864502932, 62 | "duration" : 44 63 | }, 64 | "summary" : { 65 | "attachments" : 0, 66 | "steps" : 0 67 | }, 68 | "status" : "PASSED", 69 | "attachments" : [ ], 70 | "steps" : [ ] 71 | }, { 72 | "name" : "When I enter username as \"testusername\"", 73 | "title" : "When I enter username as \"testusername\"", 74 | "time" : { 75 | "start" : 1564864502932, 76 | "stop" : 1564864503232, 77 | "duration" : 300 78 | }, 79 | "summary" : { 80 | "attachments" : 0, 81 | "steps" : 0 82 | }, 83 | "status" : "PASSED", 84 | "attachments" : [ ], 85 | "steps" : [ ] 86 | }, { 87 | "name" : "And I Click on Continue button", 88 | "title" : "And I Click on Continue button", 89 | "time" : { 90 | "start" : 1564864503232, 91 | "stop" : 1564864504497, 92 | "duration" : 1265 93 | }, 94 | "summary" : { 95 | "attachments" : 0, 96 | "steps" : 0 97 | }, 98 | "status" : "PASSED", 99 | "attachments" : [ ], 100 | "steps" : [ ] 101 | }, { 102 | "name" : "And I enter password as \"testpassword\"", 103 | "title" : "And I enter password as \"testpassword\"", 104 | "time" : { 105 | "start" : 1564864504498, 106 | "stop" : 1564864504679, 107 | "duration" : 181 108 | }, 109 | "summary" : { 110 | "attachments" : 0, 111 | "steps" : 0 112 | }, 113 | "status" : "PASSED", 114 | "attachments" : [ ], 115 | "steps" : [ ] 116 | }, { 117 | "name" : "And click on login button", 118 | "title" : "And click on login button", 119 | "time" : { 120 | "start" : 1564864504679, 121 | "stop" : 1564864509005, 122 | "duration" : 4326 123 | }, 124 | "summary" : { 125 | "attachments" : 0, 126 | "steps" : 0 127 | }, 128 | "status" : "PASSED", 129 | "attachments" : [ ], 130 | "steps" : [ ] 131 | }, { 132 | "name" : "Then I am logged in", 133 | "title" : "Then I am logged in", 134 | "time" : { 135 | "start" : 1564864509006, 136 | "stop" : 1564864509110, 137 | "duration" : 104 138 | }, 139 | "summary" : { 140 | "attachments" : 0, 141 | "steps" : 0 142 | }, 143 | "status" : "PASSED", 144 | "attachments" : [ ], 145 | "steps" : [ ] 146 | }, { 147 | "name" : "And I search different \"pendrive\" from the search bar", 148 | "title" : "And I search different \"pendrive\" from the search bar", 149 | "time" : { 150 | "start" : 1564864509111, 151 | "stop" : 1564864517624, 152 | "duration" : 8513 153 | }, 154 | "summary" : { 155 | "attachments" : 0, 156 | "steps" : 0 157 | }, 158 | "status" : "PASSED", 159 | "attachments" : [ ], 160 | "steps" : [ ] 161 | } ], 162 | "attachments" : [ { 163 | "title" : "attachment2", 164 | "source" : "77534ed3-5114-42e3-bd58-3205df25e53b-attachment.png", 165 | "type" : "image/png", 166 | "size" : 446056, 167 | "uid" : "12cc78f16d085dc4" 168 | } ], 169 | "issues" : [ ], 170 | "testIds" : [ ], 171 | "labels" : [ { 172 | "name" : "language", 173 | "value" : "JAVA" 174 | }, { 175 | "name" : "feature", 176 | "value" : "As a Amazon user I should be able to login and logout with valid credentials" 177 | }, { 178 | "name" : "story", 179 | "value" : "Searching different products after login" 180 | }, { 181 | "name" : "suite-name", 182 | "value" : "As a Amazon user I should be able to login and logout with valid credentials" 183 | }, { 184 | "name" : "suite-title", 185 | "value" : null 186 | }, { 187 | "name" : "thread", 188 | "value" : "17436@A303598.main(1)" 189 | }, { 190 | "name" : "host", 191 | "value" : "A303598" 192 | }, { 193 | "name" : "framework", 194 | "value" : "CucumberJVM" 195 | } ], 196 | "parameters" : [ ] 197 | } -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/data/27da5f7fbd7cdaa-testcase.json: -------------------------------------------------------------------------------- 1 | { 2 | "uid" : "27da5f7fbd7cdaa", 3 | "name" : "Searching different products after login", 4 | "title" : "Searching different products after login", 5 | "time" : { 6 | "start" : 1564864519798, 7 | "stop" : 1564864550547, 8 | "duration" : 30749 9 | }, 10 | "summary" : { 11 | "attachments" : 1, 12 | "steps" : 9 13 | }, 14 | "failure" : null, 15 | "description" : { 16 | "value" : null, 17 | "type" : "TEXT" 18 | }, 19 | "severity" : "NORMAL", 20 | "status" : "PASSED", 21 | "suite" : { 22 | "uid" : "75616540e63606ea", 23 | "name" : "As a Amazon user I should be able to login and logout with valid credentials", 24 | "title" : "As a amazon user I should be able to login and logout with valid credentials" 25 | }, 26 | "steps" : [ { 27 | "name" : "Given I am on the Login page URL \"https://www.amazon.in/\"", 28 | "title" : "Given I am on the Login page URL \"https://www.amazon.in/\"", 29 | "time" : { 30 | "start" : 1564864524495, 31 | "stop" : 1564864528976, 32 | "duration" : 4481 33 | }, 34 | "summary" : { 35 | "attachments" : 0, 36 | "steps" : 0 37 | }, 38 | "status" : "PASSED", 39 | "attachments" : [ ], 40 | "steps" : [ ] 41 | }, { 42 | "name" : "Then I click on sign in button and wait for sign in page", 43 | "title" : "Then I click on sign in button and wait for sign in page", 44 | "time" : { 45 | "start" : 1564864528976, 46 | "stop" : 1564864531408, 47 | "duration" : 2432 48 | }, 49 | "summary" : { 50 | "attachments" : 0, 51 | "steps" : 0 52 | }, 53 | "status" : "PASSED", 54 | "attachments" : [ ], 55 | "steps" : [ ] 56 | }, { 57 | "name" : "Then I should see Sign In Page", 58 | "title" : "Then I should see Sign In Page", 59 | "time" : { 60 | "start" : 1564864531408, 61 | "stop" : 1564864531456, 62 | "duration" : 48 63 | }, 64 | "summary" : { 65 | "attachments" : 0, 66 | "steps" : 0 67 | }, 68 | "status" : "PASSED", 69 | "attachments" : [ ], 70 | "steps" : [ ] 71 | }, { 72 | "name" : "When I enter username as \"testusername\"", 73 | "title" : "When I enter username as \"testusername\"", 74 | "time" : { 75 | "start" : 1564864531456, 76 | "stop" : 1564864531793, 77 | "duration" : 337 78 | }, 79 | "summary" : { 80 | "attachments" : 0, 81 | "steps" : 0 82 | }, 83 | "status" : "PASSED", 84 | "attachments" : [ ], 85 | "steps" : [ ] 86 | }, { 87 | "name" : "And I Click on Continue button", 88 | "title" : "And I Click on Continue button", 89 | "time" : { 90 | "start" : 1564864531793, 91 | "stop" : 1564864533297, 92 | "duration" : 1504 93 | }, 94 | "summary" : { 95 | "attachments" : 0, 96 | "steps" : 0 97 | }, 98 | "status" : "PASSED", 99 | "attachments" : [ ], 100 | "steps" : [ ] 101 | }, { 102 | "name" : "And I enter password as \"testpassword\"", 103 | "title" : "And I enter password as \"testpassword\"", 104 | "time" : { 105 | "start" : 1564864533298, 106 | "stop" : 1564864533507, 107 | "duration" : 209 108 | }, 109 | "summary" : { 110 | "attachments" : 0, 111 | "steps" : 0 112 | }, 113 | "status" : "PASSED", 114 | "attachments" : [ ], 115 | "steps" : [ ] 116 | }, { 117 | "name" : "And click on login button", 118 | "title" : "And click on login button", 119 | "time" : { 120 | "start" : 1564864533507, 121 | "stop" : 1564864538688, 122 | "duration" : 5181 123 | }, 124 | "summary" : { 125 | "attachments" : 0, 126 | "steps" : 0 127 | }, 128 | "status" : "PASSED", 129 | "attachments" : [ ], 130 | "steps" : [ ] 131 | }, { 132 | "name" : "Then I am logged in", 133 | "title" : "Then I am logged in", 134 | "time" : { 135 | "start" : 1564864538688, 136 | "stop" : 1564864538759, 137 | "duration" : 71 138 | }, 139 | "summary" : { 140 | "attachments" : 0, 141 | "steps" : 0 142 | }, 143 | "status" : "PASSED", 144 | "attachments" : [ ], 145 | "steps" : [ ] 146 | }, { 147 | "name" : "And I search different \"led tv\" from the search bar", 148 | "title" : "And I search different \"led tv\" from the search bar", 149 | "time" : { 150 | "start" : 1564864538759, 151 | "stop" : 1564864548625, 152 | "duration" : 9866 153 | }, 154 | "summary" : { 155 | "attachments" : 0, 156 | "steps" : 0 157 | }, 158 | "status" : "PASSED", 159 | "attachments" : [ ], 160 | "steps" : [ ] 161 | } ], 162 | "attachments" : [ { 163 | "title" : "attachment3", 164 | "source" : "174a1f3d-4f45-4048-91c9-c6b20dbd3b87-attachment.png", 165 | "type" : "image/png", 166 | "size" : 656405, 167 | "uid" : "e306873182b3bdd9" 168 | } ], 169 | "issues" : [ ], 170 | "testIds" : [ ], 171 | "labels" : [ { 172 | "name" : "language", 173 | "value" : "JAVA" 174 | }, { 175 | "name" : "feature", 176 | "value" : "As a Amazon user I should be able to login and logout with valid credentials" 177 | }, { 178 | "name" : "story", 179 | "value" : "Searching different products after login" 180 | }, { 181 | "name" : "suite-name", 182 | "value" : "As a Amazon user I should be able to login and logout with valid credentials" 183 | }, { 184 | "name" : "suite-title", 185 | "value" : null 186 | }, { 187 | "name" : "thread", 188 | "value" : "17436@A303598.main(1)" 189 | }, { 190 | "name" : "host", 191 | "value" : "A303598" 192 | }, { 193 | "name" : "framework", 194 | "value" : "CucumberJVM" 195 | } ], 196 | "parameters" : [ ] 197 | } -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/data/2d2921ff-c1d3-43e6-872a-65c76a32a84a-attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/site/allure-maven-plugin/data/2d2921ff-c1d3-43e6-872a-65c76a32a84a-attachment.png -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/data/552e1c3f-ff78-42a2-85a8-fd90e294dd60-attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/site/allure-maven-plugin/data/552e1c3f-ff78-42a2-85a8-fd90e294dd60-attachment.png -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/data/5ae4eb98-65ac-4803-b647-24b0861160cf-attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/site/allure-maven-plugin/data/5ae4eb98-65ac-4803-b647-24b0861160cf-attachment.png -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/data/6c351f2514930faa-testcase.json: -------------------------------------------------------------------------------- 1 | { 2 | "uid" : "6c351f2514930faa", 3 | "name" : "Searching different products after login", 4 | "title" : "Searching different products after login", 5 | "time" : { 6 | "start" : 1564864459576, 7 | "stop" : 1564864490836, 8 | "duration" : 31260 9 | }, 10 | "summary" : { 11 | "attachments" : 1, 12 | "steps" : 9 13 | }, 14 | "failure" : null, 15 | "description" : { 16 | "value" : null, 17 | "type" : "TEXT" 18 | }, 19 | "severity" : "NORMAL", 20 | "status" : "PASSED", 21 | "suite" : { 22 | "uid" : "75616540e63606ea", 23 | "name" : "As a Amazon user I should be able to login and logout with valid credentials", 24 | "title" : "As a amazon user I should be able to login and logout with valid credentials" 25 | }, 26 | "steps" : [ { 27 | "name" : "Given I am on the Login page URL \"https://www.amazon.in/\"", 28 | "title" : "Given I am on the Login page URL \"https://www.amazon.in/\"", 29 | "time" : { 30 | "start" : 1564864464395, 31 | "stop" : 1564864470108, 32 | "duration" : 5713 33 | }, 34 | "summary" : { 35 | "attachments" : 0, 36 | "steps" : 0 37 | }, 38 | "status" : "PASSED", 39 | "attachments" : [ ], 40 | "steps" : [ ] 41 | }, { 42 | "name" : "Then I click on sign in button and wait for sign in page", 43 | "title" : "Then I click on sign in button and wait for sign in page", 44 | "time" : { 45 | "start" : 1564864470108, 46 | "stop" : 1564864472558, 47 | "duration" : 2450 48 | }, 49 | "summary" : { 50 | "attachments" : 0, 51 | "steps" : 0 52 | }, 53 | "status" : "PASSED", 54 | "attachments" : [ ], 55 | "steps" : [ ] 56 | }, { 57 | "name" : "Then I should see Sign In Page", 58 | "title" : "Then I should see Sign In Page", 59 | "time" : { 60 | "start" : 1564864472559, 61 | "stop" : 1564864472594, 62 | "duration" : 35 63 | }, 64 | "summary" : { 65 | "attachments" : 0, 66 | "steps" : 0 67 | }, 68 | "status" : "PASSED", 69 | "attachments" : [ ], 70 | "steps" : [ ] 71 | }, { 72 | "name" : "When I enter username as \"testusername\"", 73 | "title" : "When I enter username as \"testusername\"", 74 | "time" : { 75 | "start" : 1564864472594, 76 | "stop" : 1564864472984, 77 | "duration" : 390 78 | }, 79 | "summary" : { 80 | "attachments" : 0, 81 | "steps" : 0 82 | }, 83 | "status" : "PASSED", 84 | "attachments" : [ ], 85 | "steps" : [ ] 86 | }, { 87 | "name" : "And I Click on Continue button", 88 | "title" : "And I Click on Continue button", 89 | "time" : { 90 | "start" : 1564864472984, 91 | "stop" : 1564864474344, 92 | "duration" : 1360 93 | }, 94 | "summary" : { 95 | "attachments" : 0, 96 | "steps" : 0 97 | }, 98 | "status" : "PASSED", 99 | "attachments" : [ ], 100 | "steps" : [ ] 101 | }, { 102 | "name" : "And I enter password as \"testpassword\"", 103 | "title" : "And I enter password as \"testpassword\"", 104 | "time" : { 105 | "start" : 1564864474345, 106 | "stop" : 1564864474489, 107 | "duration" : 144 108 | }, 109 | "summary" : { 110 | "attachments" : 0, 111 | "steps" : 0 112 | }, 113 | "status" : "PASSED", 114 | "attachments" : [ ], 115 | "steps" : [ ] 116 | }, { 117 | "name" : "And click on login button", 118 | "title" : "And click on login button", 119 | "time" : { 120 | "start" : 1564864474489, 121 | "stop" : 1564864479103, 122 | "duration" : 4614 123 | }, 124 | "summary" : { 125 | "attachments" : 0, 126 | "steps" : 0 127 | }, 128 | "status" : "PASSED", 129 | "attachments" : [ ], 130 | "steps" : [ ] 131 | }, { 132 | "name" : "Then I am logged in", 133 | "title" : "Then I am logged in", 134 | "time" : { 135 | "start" : 1564864479103, 136 | "stop" : 1564864479264, 137 | "duration" : 161 138 | }, 139 | "summary" : { 140 | "attachments" : 0, 141 | "steps" : 0 142 | }, 143 | "status" : "PASSED", 144 | "attachments" : [ ], 145 | "steps" : [ ] 146 | }, { 147 | "name" : "And I search different \"laptops\" from the search bar", 148 | "title" : "And I search different \"laptops\" from the search bar", 149 | "time" : { 150 | "start" : 1564864479264, 151 | "stop" : 1564864488457, 152 | "duration" : 9193 153 | }, 154 | "summary" : { 155 | "attachments" : 0, 156 | "steps" : 0 157 | }, 158 | "status" : "PASSED", 159 | "attachments" : [ ], 160 | "steps" : [ ] 161 | } ], 162 | "attachments" : [ { 163 | "title" : "attachment1", 164 | "source" : "2d2921ff-c1d3-43e6-872a-65c76a32a84a-attachment.png", 165 | "type" : "image/png", 166 | "size" : 565750, 167 | "uid" : "5ff590f84f08b388" 168 | } ], 169 | "issues" : [ ], 170 | "testIds" : [ ], 171 | "labels" : [ { 172 | "name" : "language", 173 | "value" : "JAVA" 174 | }, { 175 | "name" : "feature", 176 | "value" : "As a Amazon user I should be able to login and logout with valid credentials" 177 | }, { 178 | "name" : "story", 179 | "value" : "Searching different products after login" 180 | }, { 181 | "name" : "suite-name", 182 | "value" : "As a Amazon user I should be able to login and logout with valid credentials" 183 | }, { 184 | "name" : "suite-title", 185 | "value" : null 186 | }, { 187 | "name" : "thread", 188 | "value" : "17436@A303598.main(1)" 189 | }, { 190 | "name" : "host", 191 | "value" : "A303598" 192 | }, { 193 | "name" : "framework", 194 | "value" : "CucumberJVM" 195 | } ], 196 | "parameters" : [ ] 197 | } -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/data/71cfe494-e278-4ef0-a457-fd96822b92d0-attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/site/allure-maven-plugin/data/71cfe494-e278-4ef0-a457-fd96822b92d0-attachment.png -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/data/77534ed3-5114-42e3-bd58-3205df25e53b-attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/site/allure-maven-plugin/data/77534ed3-5114-42e3-bd58-3205df25e53b-attachment.png -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/data/789ee847-a4ef-4bd8-9a54-7ca80aa1c2c5-attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/site/allure-maven-plugin/data/789ee847-a4ef-4bd8-9a54-7ca80aa1c2c5-attachment.png -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/data/behaviors.json: -------------------------------------------------------------------------------- 1 | { 2 | "features" : [ { 3 | "title" : "As a Amazon user I should be able to login and logout with valid credentials", 4 | "statistic" : { 5 | "total" : 4, 6 | "passed" : 3, 7 | "pending" : 0, 8 | "canceled" : 0, 9 | "failed" : 0, 10 | "broken" : 1 11 | }, 12 | "stories" : [ { 13 | "uid" : "24e18f2788f15bd4", 14 | "title" : "Login into the application with valid credentials", 15 | "statistic" : { 16 | "total" : 1, 17 | "passed" : 0, 18 | "pending" : 0, 19 | "canceled" : 0, 20 | "failed" : 0, 21 | "broken" : 1 22 | }, 23 | "testCases" : [ { 24 | "uid" : "c64b0dcacfd90108", 25 | "name" : "Login into the application with valid credentials", 26 | "title" : "Login into the application with valid credentials", 27 | "time" : { 28 | "start" : 1564864411437, 29 | "stop" : 1564864459569, 30 | "duration" : 48132 31 | }, 32 | "severity" : "NORMAL", 33 | "status" : "BROKEN" 34 | } ] 35 | }, { 36 | "uid" : "9e0756278963cdff", 37 | "title" : "Searching different products after login", 38 | "statistic" : { 39 | "total" : 3, 40 | "passed" : 3, 41 | "pending" : 0, 42 | "canceled" : 0, 43 | "failed" : 0, 44 | "broken" : 0 45 | }, 46 | "testCases" : [ { 47 | "uid" : "6c351f2514930faa", 48 | "name" : "Searching different products after login", 49 | "title" : "Searching different products after login", 50 | "time" : { 51 | "start" : 1564864459576, 52 | "stop" : 1564864490836, 53 | "duration" : 31260 54 | }, 55 | "severity" : "NORMAL", 56 | "status" : "PASSED" 57 | }, { 58 | "uid" : "215067456f4409ae", 59 | "name" : "Searching different products after login", 60 | "title" : "Searching different products after login", 61 | "time" : { 62 | "start" : 1564864490843, 63 | "stop" : 1564864519797, 64 | "duration" : 28954 65 | }, 66 | "severity" : "NORMAL", 67 | "status" : "PASSED" 68 | }, { 69 | "uid" : "27da5f7fbd7cdaa", 70 | "name" : "Searching different products after login", 71 | "title" : "Searching different products after login", 72 | "time" : { 73 | "start" : 1564864519798, 74 | "stop" : 1564864550547, 75 | "duration" : 30749 76 | }, 77 | "severity" : "NORMAL", 78 | "status" : "PASSED" 79 | } ] 80 | } ] 81 | } ] 82 | } -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/data/c119fc0f-cce5-4ac0-8499-0cdad18db7c4-attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/site/allure-maven-plugin/data/c119fc0f-cce5-4ac0-8499-0cdad18db7c4-attachment.png -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/data/defects.json: -------------------------------------------------------------------------------- 1 | { 2 | "defectsList" : [ { 3 | "title" : "Product defects", 4 | "status" : "FAILED", 5 | "defects" : [ ] 6 | }, { 7 | "title" : "Test defects", 8 | "status" : "BROKEN", 9 | "defects" : [ { 10 | "uid" : "ff37178e98713812", 11 | "failure" : { 12 | "message" : "NoSuchElementException: no such element: Unable to locate element: {\"method\":\"xpath\",\"selector\":\"//div[starts-with(@class,'sg-col-4')]/div[@class='sg-col-inner']/div/h5/a\"}\n (Session info: chrome=75.0.3770.142)\n (Driver info: chromedriver=2.38.552522 (437e6fbedfa8762dec75e2c5b3ddb86763dc9dcb),platform=Windows NT 10.0.17134 x86_64) (WARNING: The server did not provide any stacktrace information)\nCommand duration or timeout: 0 milliseconds\nFor documentation on this error, please visit: http://seleniumhq.org/exceptions/no_such_element.html\nBuild info: version: '3.11.0', revision: 'e59cfb3', time: '2018-03-11T20:26:55.152Z'\nSystem info: host: 'A303598', ip: '192.168.137.1', os.name: 'Windows 10', os.arch: 'amd64', os.version: '10.0', java.version: '1.8.0_181'\nDriver info: org.openqa.selenium.chrome.ChromeDriver\nCapabilities {acceptInsecureCerts: false, acceptSslCerts: false, applicationCacheEnabled: false, browserConnectionEnabled: false, browserName: chrome, chrome: {chromedriverVersion: 2.38.552522 (437e6fbedfa876..., userDataDir: C:\\Users\\negiro\\AppData\\Loc...}, cssSelectorsEnabled: true, databaseEnabled: false, handlesAlerts: true, hasTouchScreen: false, javascriptEnabled: true, locationContextEnabled: true, mobileEmulationEnabled: false, nativeEvents: true, networkConnectionEnabled: false, pageLoadStrategy: normal, platform: XP, platformName: XP, rotatable: false, setWindowRect: true, takesHeapSnapshot: true, takesScreenshot: true, unexpectedAlertBehaviour: , unhandledPromptBehavior: , version: 75.0.3770.142, webStorageEnabled: true}\nSession ID: 87457ddf04dcb99a23faaec0f18c5201\n*** Element info: {Using=xpath, value=//div[starts-with(@class,'sg-col-4')]/div[@class='sg-col-inner']/div/h5/a}", 13 | "stackTrace" : "org.openqa.selenium.NoSuchElementException: no such element: Unable to locate element: {\"method\":\"xpath\",\"selector\":\"//div[starts-with(@class,'sg-col-4')]/div[@class='sg-col-inner']/div/h5/a\"}\n (Session info: chrome=75.0.3770.142)\n (Driver info: chromedriver=2.38.552522 (437e6fbedfa8762dec75e2c5b3ddb86763dc9dcb),platform=Windows NT 10.0.17134 x86_64) (WARNING: The server did not provide any stacktrace information)\nCommand duration or timeout: 0 milliseconds\nFor documentation on this error, please visit: http://seleniumhq.org/exceptions/no_such_element.html\nBuild info: version: '3.11.0', revision: 'e59cfb3', time: '2018-03-11T20:26:55.152Z'\nSystem info: host: 'A303598', ip: '192.168.137.1', os.name: 'Windows 10', os.arch: 'amd64', os.version: '10.0', java.version: '1.8.0_181'\nDriver info: org.openqa.selenium.chrome.ChromeDriver\nCapabilities {acceptInsecureCerts: false, acceptSslCerts: false, applicationCacheEnabled: false, browserConnectionEnabled: false, browserName: chrome, chrome: {chromedriverVersion: 2.38.552522 (437e6fbedfa876..., userDataDir: C:\\Users\\negiro\\AppData\\Loc...}, cssSelectorsEnabled: true, databaseEnabled: false, handlesAlerts: true, hasTouchScreen: false, javascriptEnabled: true, locationContextEnabled: true, mobileEmulationEnabled: false, nativeEvents: true, networkConnectionEnabled: false, pageLoadStrategy: normal, platform: XP, platformName: XP, rotatable: false, setWindowRect: true, takesHeapSnapshot: true, takesScreenshot: true, unexpectedAlertBehaviour: , unhandledPromptBehavior: , version: 75.0.3770.142, webStorageEnabled: true}\nSession ID: 87457ddf04dcb99a23faaec0f18c5201\n*** Element info: {Using=xpath, value=//div[starts-with(@class,'sg-col-4')]/div[@class='sg-col-inner']/div/h5/a}\n\tat sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)\n\tat sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)\n\tat sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)\n\tat java.lang.reflect.Constructor.newInstance(Constructor.java:423)\n\tat org.openqa.selenium.remote.ErrorHandler.createThrowable(ErrorHandler.java:214)\n\tat org.openqa.selenium.remote.ErrorHandler.throwIfResponseFailed(ErrorHandler.java:166)\n\tat org.openqa.selenium.remote.http.JsonHttpResponseCodec.reconstructValue(JsonHttpResponseCodec.java:40)\n\tat org.openqa.selenium.remote.http.AbstractHttpResponseCodec.decode(AbstractHttpResponseCodec.java:80)\n\tat org.openqa.selenium.remote.http.AbstractHttpResponseCodec.decode(AbstractHttpResponseCodec.java:44)\n\tat org.openqa.selenium.remote.HttpCommandExecutor.execute(HttpCommandExecutor.java:158)\n\tat org.openqa.selenium.remote.service.DriverCommandExecutor.execute(DriverCommandExecutor.java:83)\n\tat org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:545)\n\tat org.openqa.selenium.remote.RemoteWebDriver.findElement(RemoteWebDriver.java:319)\n\tat org.openqa.selenium.remote.RemoteWebDriver.findElementByXPath(RemoteWebDriver.java:421)\n\tat org.openqa.selenium.By$ByXPath.findElement(By.java:361)\n\tat org.openqa.selenium.remote.RemoteWebDriver.findElement(RemoteWebDriver.java:311)\n\tat org.openqa.selenium.support.pagefactory.DefaultElementLocator.findElement(DefaultElementLocator.java:69)\n\tat org.openqa.selenium.support.pagefactory.internal.LocatingElementHandler.invoke(LocatingElementHandler.java:38)\n\tat com.sun.proxy.$Proxy18.click(Unknown Source)\n\tat com.cucumberFramework.pageObjects.LoginLogoutPage.enterSearchItemandAddToCart(LoginLogoutPage.java:98)\n\tat com.cucumberFramework.stepdefinitions.loginLogoutPageStepDefinitions.i_search_and_add_nd_available_item_to_cart(loginLogoutPageStepDefinitions.java:86)\n\tat ✽.Then I search \"Macbook pro\" and add second available item to cart(src/test/resources/features/login/login_logout.feature:15)\n" 14 | }, 15 | "testCases" : [ { 16 | "uid" : "c64b0dcacfd90108", 17 | "name" : "Login into the application with valid credentials", 18 | "title" : "Login into the application with valid credentials", 19 | "time" : { 20 | "start" : 1564864411437, 21 | "stop" : 1564864459569, 22 | "duration" : 48132 23 | }, 24 | "severity" : "NORMAL", 25 | "status" : "BROKEN" 26 | } ] 27 | } ] 28 | } ] 29 | } -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/data/environment.json: -------------------------------------------------------------------------------- 1 | { 2 | "id" : "81e53be6-1dc5-4f97-8bf5-da4d85d25690", 3 | "name" : "Allure Test Pack", 4 | "url" : null, 5 | "parameter" : [ ] 6 | } -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/data/graph.json: -------------------------------------------------------------------------------- 1 | { 2 | "testCases" : [ { 3 | "uid" : "c64b0dcacfd90108", 4 | "name" : "Login into the application with valid credentials", 5 | "title" : "Login into the application with valid credentials", 6 | "time" : { 7 | "start" : 1564864411437, 8 | "stop" : 1564864459569, 9 | "duration" : 48132 10 | }, 11 | "severity" : "NORMAL", 12 | "status" : "BROKEN" 13 | }, { 14 | "uid" : "6c351f2514930faa", 15 | "name" : "Searching different products after login", 16 | "title" : "Searching different products after login", 17 | "time" : { 18 | "start" : 1564864459576, 19 | "stop" : 1564864490836, 20 | "duration" : 31260 21 | }, 22 | "severity" : "NORMAL", 23 | "status" : "PASSED" 24 | }, { 25 | "uid" : "215067456f4409ae", 26 | "name" : "Searching different products after login", 27 | "title" : "Searching different products after login", 28 | "time" : { 29 | "start" : 1564864490843, 30 | "stop" : 1564864519797, 31 | "duration" : 28954 32 | }, 33 | "severity" : "NORMAL", 34 | "status" : "PASSED" 35 | }, { 36 | "uid" : "27da5f7fbd7cdaa", 37 | "name" : "Searching different products after login", 38 | "title" : "Searching different products after login", 39 | "time" : { 40 | "start" : 1564864519798, 41 | "stop" : 1564864550547, 42 | "duration" : 30749 43 | }, 44 | "severity" : "NORMAL", 45 | "status" : "PASSED" 46 | } ] 47 | } -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/data/plugins.json: -------------------------------------------------------------------------------- 1 | [ "total", "defects", "xunit", "behaviors", "graph", "timeline", "environment" ] -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/data/report.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Allure Test Pack", 3 | "id" : "81e53be6-1dc5-4f97-8bf5-da4d85d25690", 4 | "url" : null, 5 | "size" : 46311, 6 | "time" : 2459 7 | } -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/data/timeline.json: -------------------------------------------------------------------------------- 1 | { 2 | "hosts" : [ { 3 | "title" : "A303598", 4 | "threads" : [ { 5 | "title" : "17436@A303598.main(1)", 6 | "testCases" : [ { 7 | "uid" : "c64b0dcacfd90108", 8 | "name" : "Login into the application with valid credentials", 9 | "title" : "Login into the application with valid credentials", 10 | "time" : { 11 | "start" : 1564864411437, 12 | "stop" : 1564864459569, 13 | "duration" : 48132 14 | }, 15 | "severity" : "NORMAL", 16 | "status" : "BROKEN" 17 | }, { 18 | "uid" : "6c351f2514930faa", 19 | "name" : "Searching different products after login", 20 | "title" : "Searching different products after login", 21 | "time" : { 22 | "start" : 1564864459576, 23 | "stop" : 1564864490836, 24 | "duration" : 31260 25 | }, 26 | "severity" : "NORMAL", 27 | "status" : "PASSED" 28 | }, { 29 | "uid" : "215067456f4409ae", 30 | "name" : "Searching different products after login", 31 | "title" : "Searching different products after login", 32 | "time" : { 33 | "start" : 1564864490843, 34 | "stop" : 1564864519797, 35 | "duration" : 28954 36 | }, 37 | "severity" : "NORMAL", 38 | "status" : "PASSED" 39 | }, { 40 | "uid" : "27da5f7fbd7cdaa", 41 | "name" : "Searching different products after login", 42 | "title" : "Searching different products after login", 43 | "time" : { 44 | "start" : 1564864519798, 45 | "stop" : 1564864550547, 46 | "duration" : 30749 47 | }, 48 | "severity" : "NORMAL", 49 | "status" : "PASSED" 50 | } ] 51 | } ] 52 | } ] 53 | } -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/data/total.json: -------------------------------------------------------------------------------- 1 | { 2 | "statistic" : { 3 | "total" : 4, 4 | "passed" : 3, 5 | "pending" : 0, 6 | "canceled" : 0, 7 | "failed" : 0, 8 | "broken" : 1 9 | }, 10 | "time" : { 11 | "start" : 1564864411437, 12 | "stop" : 1564864550547, 13 | "duration" : 139110 14 | } 15 | } -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/data/widgets.json: -------------------------------------------------------------------------------- 1 | { 2 | "hash" : "e7105c43ada45c9f6e0006854ef1a1d95249231d", 3 | "plugins" : { 4 | "total" : { 5 | "statistic" : { 6 | "total" : 4, 7 | "passed" : 3, 8 | "pending" : 0, 9 | "canceled" : 0, 10 | "failed" : 0, 11 | "broken" : 1 12 | }, 13 | "time" : { 14 | "start" : 1564864411437, 15 | "stop" : 1564864550547, 16 | "duration" : 139110 17 | } 18 | }, 19 | "defects" : { 20 | "totalCount" : 1, 21 | "items" : [ { 22 | "count" : 1, 23 | "uid" : "ff37178e98713812", 24 | "message" : "NoSuchElementException: no such element: Unable to locate element: {\"method\":\"xpath\",\"selector\":\"//div[starts-with(@class,'sg-col-4')]/div[@class='sg-col-inner']/div/h5/a\"}\n (Session info: chrome=75.0.3770.142)\n (Driver info: chromedriver=2.38.552522 (437e6fbedfa8762dec75e2c5b3ddb86763dc9dcb),platform=Windows NT 10.0.17134 x86_64) (WARNING: The server did not provide any stacktrace information)\nCommand duration or timeout: 0 milliseconds\nFor documentation on this error, please visit: http://seleniumhq.org/exceptions/no_such_element.html\nBuild info: version: '3.11.0', revision: 'e59cfb3', time: '2018-03-11T20:26:55.152Z'\nSystem info: host: 'A303598', ip: '192.168.137.1', os.name: 'Windows 10', os.arch: 'amd64', os.version: '10.0', java.version: '1.8.0_181'\nDriver info: org.openqa.selenium.chrome.ChromeDriver\nCapabilities {acceptInsecureCerts: false, acceptSslCerts: false, applicationCacheEnabled: false, browserConnectionEnabled: false, browserName: chrome, chrome: {chromedriverVersion: 2.38.552522 (437e6fbedfa876..., userDataDir: C:\\Users\\negiro\\AppData\\Loc...}, cssSelectorsEnabled: true, databaseEnabled: false, handlesAlerts: true, hasTouchScreen: false, javascriptEnabled: true, locationContextEnabled: true, mobileEmulationEnabled: false, nativeEvents: true, networkConnectionEnabled: false, pageLoadStrategy: normal, platform: XP, platformName: XP, rotatable: false, setWindowRect: true, takesHeapSnapshot: true, takesScreenshot: true, unexpectedAlertBehaviour: , unhandledPromptBehavior: , version: 75.0.3770.142, webStorageEnabled: true}\nSession ID: 87457ddf04dcb99a23faaec0f18c5201\n*** Element info: {Using=xpath, value=//div[starts-with(@class,'sg-col-4')]/div[@class='sg-col-inner']/div/h5/a}", 25 | "status" : "BROKEN" 26 | } ] 27 | }, 28 | "xunit" : { 29 | "totalCount" : 1, 30 | "items" : [ { 31 | "uid" : "75616540e63606ea", 32 | "title" : "As a amazon user I should be able to login and logout with valid credentials", 33 | "statistic" : { 34 | "total" : 4, 35 | "passed" : 3, 36 | "pending" : 0, 37 | "canceled" : 0, 38 | "failed" : 0, 39 | "broken" : 1 40 | } 41 | } ] 42 | }, 43 | "behaviors" : { 44 | "totalCount" : 1, 45 | "items" : [ { 46 | "title" : "As a Amazon user I should be able to login and logout with valid credentials", 47 | "statistic" : { 48 | "total" : 4, 49 | "passed" : 3, 50 | "pending" : 0, 51 | "canceled" : 0, 52 | "failed" : 0, 53 | "broken" : 1 54 | } 55 | } ] 56 | }, 57 | "environment" : [ ] 58 | } 59 | } -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/data/xunit.json: -------------------------------------------------------------------------------- 1 | { 2 | "time" : { 3 | "start" : 1564864411437, 4 | "stop" : 1564864550547, 5 | "duration" : 139110 6 | }, 7 | "testSuites" : [ { 8 | "uid" : "75616540e63606ea", 9 | "name" : "As a Amazon user I should be able to login and logout with valid credentials", 10 | "title" : "As a amazon user I should be able to login and logout with valid credentials", 11 | "time" : { 12 | "start" : 1564864411437, 13 | "stop" : 1564864550547, 14 | "duration" : 139110 15 | }, 16 | "statistic" : { 17 | "total" : 4, 18 | "passed" : 3, 19 | "pending" : 0, 20 | "canceled" : 0, 21 | "failed" : 0, 22 | "broken" : 1 23 | }, 24 | "description" : null, 25 | "testCases" : [ { 26 | "uid" : "c64b0dcacfd90108", 27 | "name" : "Login into the application with valid credentials", 28 | "title" : "Login into the application with valid credentials", 29 | "time" : { 30 | "start" : 1564864411437, 31 | "stop" : 1564864459569, 32 | "duration" : 48132 33 | }, 34 | "severity" : "NORMAL", 35 | "status" : "BROKEN" 36 | }, { 37 | "uid" : "6c351f2514930faa", 38 | "name" : "Searching different products after login", 39 | "title" : "Searching different products after login", 40 | "time" : { 41 | "start" : 1564864459576, 42 | "stop" : 1564864490836, 43 | "duration" : 31260 44 | }, 45 | "severity" : "NORMAL", 46 | "status" : "PASSED" 47 | }, { 48 | "uid" : "215067456f4409ae", 49 | "name" : "Searching different products after login", 50 | "title" : "Searching different products after login", 51 | "time" : { 52 | "start" : 1564864490843, 53 | "stop" : 1564864519797, 54 | "duration" : 28954 55 | }, 56 | "severity" : "NORMAL", 57 | "status" : "PASSED" 58 | }, { 59 | "uid" : "27da5f7fbd7cdaa", 60 | "name" : "Searching different products after login", 61 | "title" : "Searching different products after login", 62 | "time" : { 63 | "start" : 1564864519798, 64 | "stop" : 1564864550547, 65 | "duration" : 30749 66 | }, 67 | "severity" : "NORMAL", 68 | "status" : "PASSED" 69 | } ] 70 | } ] 71 | } -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/f8ddfbfcb1a4e191ee1fa7f98417280e.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/fa4b5e31eae6378a0dfa9e10cfb9262f.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/site/allure-maven-plugin/favicon.ico -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/fee66e712a8a08eef5805a46892932ad.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/site/allure-maven-plugin/fee66e712a8a08eef5805a46892932ad.woff -------------------------------------------------------------------------------- /target/site/allure-maven-plugin/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
70 |Allure 6 | 7 | 8 | 9 | 10 | 11 |12 | 13 | 14 | 15 |16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /target/site/css/maven-base.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0px; 3 | padding: 0px; 4 | } 5 | img { 6 | border:none; 7 | } 8 | table { 9 | padding:0px; 10 | width: 100%; 11 | margin-left: -2px; 12 | margin-right: -2px; 13 | } 14 | acronym { 15 | cursor: help; 16 | border-bottom: 1px dotted #feb; 17 | } 18 | table.bodyTable th, table.bodyTable td { 19 | padding: 2px 4px 2px 4px; 20 | vertical-align: top; 21 | } 22 | div.clear{ 23 | clear:both; 24 | visibility: hidden; 25 | } 26 | div.clear hr{ 27 | display: none; 28 | } 29 | #bannerLeft, #bannerRight { 30 | font-size: xx-large; 31 | font-weight: bold; 32 | } 33 | #bannerLeft img, #bannerRight img { 34 | margin: 0px; 35 | } 36 | .xleft, #bannerLeft img { 37 | float:left; 38 | } 39 | .xright, #bannerRight { 40 | float:right; 41 | } 42 | #banner { 43 | padding: 0px; 44 | } 45 | #banner img { 46 | border: none; 47 | } 48 | #breadcrumbs { 49 | padding: 3px 10px 3px 10px; 50 | } 51 | #leftColumn { 52 | width: 170px; 53 | float:left; 54 | overflow: auto; 55 | } 56 | #bodyColumn { 57 | margin-right: 1.5em; 58 | margin-left: 197px; 59 | } 60 | #legend { 61 | padding: 8px 0 8px 0; 62 | } 63 | #navcolumn { 64 | padding: 8px 4px 0 8px; 65 | } 66 | #navcolumn h5 { 67 | margin: 0; 68 | padding: 0; 69 | font-size: small; 70 | } 71 | #navcolumn ul { 72 | margin: 0; 73 | padding: 0; 74 | font-size: small; 75 | } 76 | #navcolumn li { 77 | list-style-type: none; 78 | background-image: none; 79 | background-repeat: no-repeat; 80 | background-position: 0 0.4em; 81 | padding-left: 16px; 82 | list-style-position: outside; 83 | line-height: 1.2em; 84 | font-size: smaller; 85 | } 86 | #navcolumn li.expanded { 87 | background-image: url(../images/expanded.gif); 88 | } 89 | #navcolumn li.collapsed { 90 | background-image: url(../images/collapsed.gif); 91 | } 92 | #navcolumn li.none { 93 | text-indent: -1em; 94 | margin-left: 1em; 95 | } 96 | #poweredBy { 97 | text-align: center; 98 | } 99 | #navcolumn img { 100 | margin-top: 10px; 101 | margin-bottom: 3px; 102 | } 103 | #poweredBy img { 104 | display:block; 105 | margin: 20px 0 20px 17px; 106 | } 107 | #search img { 108 | margin: 0px; 109 | display: block; 110 | } 111 | #search #q, #search #btnG { 112 | border: 1px solid #999; 113 | margin-bottom:10px; 114 | } 115 | #search form { 116 | margin: 0px; 117 | } 118 | #lastPublished { 119 | font-size: x-small; 120 | } 121 | .navSection { 122 | margin-bottom: 2px; 123 | padding: 8px; 124 | } 125 | .navSectionHead { 126 | font-weight: bold; 127 | font-size: x-small; 128 | } 129 | .section { 130 | padding: 4px; 131 | } 132 | #footer { 133 | padding: 3px 10px 3px 10px; 134 | font-size: x-small; 135 | } 136 | #breadcrumbs { 137 | font-size: x-small; 138 | margin: 0pt; 139 | } 140 | .source { 141 | padding: 12px; 142 | margin: 1em 7px 1em 7px; 143 | } 144 | .source pre { 145 | margin: 0px; 146 | padding: 0px; 147 | } 148 | #navcolumn img.imageLink, .imageLink { 149 | padding-left: 0px; 150 | padding-bottom: 0px; 151 | padding-top: 0px; 152 | padding-right: 2px; 153 | border: 0px; 154 | margin: 0px; 155 | } 156 | -------------------------------------------------------------------------------- /target/site/css/maven-theme.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding: 0px 0px 10px 0px; 3 | } 4 | body, td, select, input, li{ 5 | font-family: Verdana, Helvetica, Arial, sans-serif; 6 | font-size: 13px; 7 | } 8 | code{ 9 | font-family: Courier, monospace; 10 | font-size: 13px; 11 | } 12 | a { 13 | text-decoration: none; 14 | } 15 | a:link { 16 | color:#36a; 17 | } 18 | a:visited { 19 | color:#47a; 20 | } 21 | a:active, a:hover { 22 | color:#69c; 23 | } 24 | #legend li.externalLink { 25 | background: url(../images/external.png) left top no-repeat; 26 | padding-left: 18px; 27 | } 28 | a.externalLink, a.externalLink:link, a.externalLink:visited, a.externalLink:active, a.externalLink:hover { 29 | background: url(../images/external.png) right center no-repeat; 30 | padding-right: 18px; 31 | } 32 | #legend li.newWindow { 33 | background: url(../images/newwindow.png) left top no-repeat; 34 | padding-left: 18px; 35 | } 36 | a.newWindow, a.newWindow:link, a.newWindow:visited, a.newWindow:active, a.newWindow:hover { 37 | background: url(../images/newwindow.png) right center no-repeat; 38 | padding-right: 18px; 39 | } 40 | h2 { 41 | padding: 4px 4px 4px 6px; 42 | border: 1px solid #999; 43 | color: #900; 44 | background-color: #ddd; 45 | font-weight:900; 46 | font-size: x-large; 47 | } 48 | h3 { 49 | padding: 4px 4px 4px 6px; 50 | border: 1px solid #aaa; 51 | color: #900; 52 | background-color: #eee; 53 | font-weight: normal; 54 | font-size: large; 55 | } 56 | h4 { 57 | padding: 4px 4px 4px 6px; 58 | border: 1px solid #bbb; 59 | color: #900; 60 | background-color: #fff; 61 | font-weight: normal; 62 | font-size: large; 63 | } 64 | h5 { 65 | padding: 4px 4px 4px 6px; 66 | color: #900; 67 | font-size: normal; 68 | } 69 | p { 70 | line-height: 1.3em; 71 | font-size: small; 72 | } 73 | #breadcrumbs { 74 | border-top: 1px solid #aaa; 75 | border-bottom: 1px solid #aaa; 76 | background-color: #ccc; 77 | } 78 | #leftColumn { 79 | margin: 10px 0 0 5px; 80 | border: 1px solid #999; 81 | background-color: #eee; 82 | } 83 | #navcolumn h5 { 84 | font-size: smaller; 85 | border-bottom: 1px solid #aaaaaa; 86 | padding-top: 2px; 87 | color: #000; 88 | } 89 | 90 | table.bodyTable th { 91 | color: white; 92 | background-color: #bbb; 93 | text-align: left; 94 | font-weight: bold; 95 | } 96 | 97 | table.bodyTable th, table.bodyTable td { 98 | font-size: 1em; 99 | } 100 | 101 | table.bodyTable tr.a { 102 | background-color: #ddd; 103 | } 104 | 105 | table.bodyTable tr.b { 106 | background-color: #eee; 107 | } 108 | 109 | .source { 110 | border: 1px solid #999; 111 | } 112 | dl { 113 | padding: 4px 4px 4px 6px; 114 | border: 1px solid #aaa; 115 | background-color: #ffc; 116 | } 117 | dt { 118 | color: #900; 119 | } 120 | #organizationLogo img, #projectLogo img, #projectLogo span{ 121 | margin: 8px; 122 | } 123 | #banner { 124 | border-bottom: 1px solid #fff; 125 | } 126 | .errormark, .warningmark, .donemark, .infomark { 127 | background: url(../images/icon_error_sml.gif) no-repeat; 128 | } 129 | 130 | .warningmark { 131 | background-image: url(../images/icon_warning_sml.gif); 132 | } 133 | 134 | .donemark { 135 | background-image: url(../images/icon_success_sml.gif); 136 | } 137 | 138 | .infomark { 139 | background-image: url(../images/icon_info_sml.gif); 140 | } 141 | 142 | -------------------------------------------------------------------------------- /target/site/css/print.css: -------------------------------------------------------------------------------- 1 | #banner, #footer, #leftcol, #breadcrumbs, .docs #toc, .docs .courtesylinks, #leftColumn, #navColumn { 2 | display: none !important; 3 | } 4 | #bodyColumn, body.docs div.docs { 5 | margin: 0 !important; 6 | border: none !important 7 | } 8 | -------------------------------------------------------------------------------- /target/site/css/site.css: -------------------------------------------------------------------------------- 1 | /* You can override this file with your own styles */ -------------------------------------------------------------------------------- /target/site/images/collapsed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/site/images/collapsed.gif -------------------------------------------------------------------------------- /target/site/images/expanded.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/site/images/expanded.gif -------------------------------------------------------------------------------- /target/site/images/external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/site/images/external.png -------------------------------------------------------------------------------- /target/site/images/icon_error_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/site/images/icon_error_sml.gif -------------------------------------------------------------------------------- /target/site/images/icon_info_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/site/images/icon_info_sml.gif -------------------------------------------------------------------------------- /target/site/images/icon_success_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/site/images/icon_success_sml.gif -------------------------------------------------------------------------------- /target/site/images/icon_warning_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/site/images/icon_warning_sml.gif -------------------------------------------------------------------------------- /target/site/images/logos/build-by-maven-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/site/images/logos/build-by-maven-black.png -------------------------------------------------------------------------------- /target/site/images/logos/build-by-maven-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/site/images/logos/build-by-maven-white.png -------------------------------------------------------------------------------- /target/site/images/logos/maven-feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/site/images/logos/maven-feather.png -------------------------------------------------------------------------------- /target/site/images/newwindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/site/images/newwindow.png -------------------------------------------------------------------------------- /target/site/project-reports.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |cucumberFramework - Generated Reports 7 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 26 | 41 |42 |63 | 62 |64 |79 |65 |78 |66 |77 |Generated Reports
67 |This document provides an overview of the various reports that are automatically generated by Maven . Each report is briefly described below.
68 |69 |Overview
70 |71 |
72 | 74 |Document 73 |Description 75 | Allure 76 |Extended report on the test results of the project. 80 |82 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /target/surefire-reports/BDD Test Suite/testng-failed.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
81 |4 | 21 | -------------------------------------------------------------------------------- /target/surefire-reports/TestSuite.txt: -------------------------------------------------------------------------------- 1 | ------------------------------------------------------------------------------- 2 | Test set: TestSuite 3 | ------------------------------------------------------------------------------- 4 | Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 143.117 sec <<< FAILURE! - in TestSuite 5 | feature(com.cucumberFramework.testRunner.TestRunner) Time elapsed: 139.64 sec <<< FAILURE! 6 | cucumber.runtime.CucumberException: 7 | org.openqa.selenium.NoSuchElementException: no such element: Unable to locate element: {"method":"xpath","selector":"//div[starts-with(@class,'sg-col-4')]/div[@class='sg-col-inner']/div/h5/a"} 8 | (Session info: chrome=75.0.3770.142) 9 | (Driver info: chromedriver=2.38.552522 (437e6fbedfa8762dec75e2c5b3ddb86763dc9dcb),platform=Windows NT 10.0.17134 x86_64) (WARNING: The server did not provide any stacktrace information) 10 | Command duration or timeout: 0 milliseconds 11 | For documentation on this error, please visit: http://seleniumhq.org/exceptions/no_such_element.html 12 | Build info: version: '3.11.0', revision: 'e59cfb3', time: '2018-03-11T20:26:55.152Z' 13 | System info: host: 'A303598', ip: '192.168.137.1', os.name: 'Windows 10', os.arch: 'amd64', os.version: '10.0', java.version: '1.8.0_181' 14 | Driver info: org.openqa.selenium.chrome.ChromeDriver 15 | Capabilities {acceptInsecureCerts: false, acceptSslCerts: false, applicationCacheEnabled: false, browserConnectionEnabled: false, browserName: chrome, chrome: {chromedriverVersion: 2.38.552522 (437e6fbedfa876..., userDataDir: C:\Users\negiro\AppData\Loc...}, cssSelectorsEnabled: true, databaseEnabled: false, handlesAlerts: true, hasTouchScreen: false, javascriptEnabled: true, locationContextEnabled: true, mobileEmulationEnabled: false, nativeEvents: true, networkConnectionEnabled: false, pageLoadStrategy: normal, platform: XP, platformName: XP, rotatable: false, setWindowRect: true, takesHeapSnapshot: true, takesScreenshot: true, unexpectedAlertBehaviour: , unhandledPromptBehavior: , version: 75.0.3770.142, webStorageEnabled: true} 16 | Session ID: 87457ddf04dcb99a23faaec0f18c5201 17 | *** Element info: {Using=xpath, value=//div[starts-with(@class,'sg-col-4')]/div[@class='sg-col-inner']/div/h5/a} 18 | at com.cucumberFramework.testRunner.TestRunner.feature(TestRunner.java:27) 19 | Caused by: org.openqa.selenium.NoSuchElementException: 20 | no such element: Unable to locate element: {"method":"xpath","selector":"//div[starts-with(@class,'sg-col-4')]/div[@class='sg-col-inner']/div/h5/a"} 21 | (Session info: chrome=75.0.3770.142) 22 | (Driver info: chromedriver=2.38.552522 (437e6fbedfa8762dec75e2c5b3ddb86763dc9dcb),platform=Windows NT 10.0.17134 x86_64) (WARNING: The server did not provide any stacktrace information) 23 | Command duration or timeout: 0 milliseconds 24 | For documentation on this error, please visit: http://seleniumhq.org/exceptions/no_such_element.html 25 | Build info: version: '3.11.0', revision: 'e59cfb3', time: '2018-03-11T20:26:55.152Z' 26 | System info: host: 'A303598', ip: '192.168.137.1', os.name: 'Windows 10', os.arch: 'amd64', os.version: '10.0', java.version: '1.8.0_181' 27 | Driver info: org.openqa.selenium.chrome.ChromeDriver 28 | Capabilities {acceptInsecureCerts: false, acceptSslCerts: false, applicationCacheEnabled: false, browserConnectionEnabled: false, browserName: chrome, chrome: {chromedriverVersion: 2.38.552522 (437e6fbedfa876..., userDataDir: C:\Users\negiro\AppData\Loc...}, cssSelectorsEnabled: true, databaseEnabled: false, handlesAlerts: true, hasTouchScreen: false, javascriptEnabled: true, locationContextEnabled: true, mobileEmulationEnabled: false, nativeEvents: true, networkConnectionEnabled: false, pageLoadStrategy: normal, platform: XP, platformName: XP, rotatable: false, setWindowRect: true, takesHeapSnapshot: true, takesScreenshot: true, unexpectedAlertBehaviour: , unhandledPromptBehavior: , version: 75.0.3770.142, webStorageEnabled: true} 29 | Session ID: 87457ddf04dcb99a23faaec0f18c5201 30 | *** Element info: {Using=xpath, value=//div[starts-with(@class,'sg-col-4')]/div[@class='sg-col-inner']/div/h5/a} 31 | 32 | -------------------------------------------------------------------------------- /target/surefire-reports/bullet_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/surefire-reports/bullet_point.png -------------------------------------------------------------------------------- /target/surefire-reports/collapseall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/surefire-reports/collapseall.gif -------------------------------------------------------------------------------- /target/surefire-reports/failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/surefire-reports/failed.png -------------------------------------------------------------------------------- /target/surefire-reports/navigator-bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohinegi548/Cucumber-BDD-Automation-Framework/49fad85f83d18f752fc4e5c479eaaa9781ceb5e0/target/surefire-reports/navigator-bullet.png -------------------------------------------------------------------------------- /target/surefire-reports/old/BDD Test Suite/Regression Test.properties: -------------------------------------------------------------------------------- 1 | [SuiteResult context=Regression Test] -------------------------------------------------------------------------------- /target/surefire-reports/old/BDD Test Suite/classes.html: -------------------------------------------------------------------------------- 1 |5 | 9 |6 | 8 |7 | 10 | 20 |11 | 19 |12 | 18 |13 | 17 |14 | 15 | 16 |
Class name | 4 |Method name | 5 |Groups | 6 |
---|---|---|
com.cucumberFramework.testRunner.TestRunner | 8 |||
@Test | 11 |||
14 | | feature | 15 |cucumber | 16 |
@BeforeClass | 19 |||
22 | | setUpClass | 23 ||
@BeforeMethod | 26 |||
@AfterMethod | 29 |||
@AfterClass | 32 |||
35 | | testDownClass | 36 |
Group name | Methods |
cucumber | TestRunner.feature(cucumber.api.testng.CucumberFeatureWrapper)[pri:0, instance:com.cucumberFramework.testRunner.TestRunner@3e850122] |
Time | Delta (ms) | Suite configuration | Test configuration | Class configuration | Groups configuration | Method configuration | Test method | Thread | Instances |
---|---|---|---|---|---|---|---|---|---|
19/08/04 02:03:31 | 0 | feature | 5 |main@1368193098 | ||||||
19/08/04 02:03:29 | -1664 | >>setUpClass | 7 |main@1368193098 | ||||||
19/08/04 02:05:50 | 139646 | <<testDownClass | 9 |main@1368193098 |
Time | Delta (ms) | Suite configuration | Test configuration | Class configuration | Groups configuration | Method configuration | Test method | Thread | Instances |
---|---|---|---|---|---|---|---|---|---|
19/08/04 02:03:29 | 0 | >>setUpClass | 5 |main@1368193098 | ||||||
19/08/04 02:03:31 | 1664 | feature | 7 |main@1368193098 | ||||||
19/08/04 02:05:50 | 141310 | <<testDownClass | 9 |main@1368193098 |
Results for
BDD Test Suite
1 test | 12 |1 class | 13 |1 method: 14 | chronological 15 | alphabetical 16 | not run (0) |
17 |
1 group | 20 |reporter output | 21 |testng.xml | 22 |
25 |
|
Test results
6 |Suite | Passed | Failed | Skipped | testng.xml |
---|---|---|---|---|
Total | 0 | 1 | 0 | |
BDD Test Suite | 9 |0 | 1 | 0 | Link |
Tests passed/Failed/Skipped: | 65 |1/0/0 | 66 |
Started on: | 69 |Thu Apr 11 15:29:37 IST 2019 | 70 |
Total time: | 73 |0 seconds (469 ms) | 74 |
Included groups: | 77 |78 | |
Excluded groups: | 81 |82 | |
PASSED TESTS | 91 ||||
Test method | 94 |Exception | 95 |Time (seconds) | 96 |Instance | 97 |
feature Test 100 | class: com.cucumberFramework.testRunner.TestRunner Test 101 | method: Runs cucmber Features Parameters: As a Amazon user I 102 | should be able to login and logout with valid credentials |
103 | 104 | | 0 | 105 |com.cucumberFramework.testRunner.TestRunner@7d9d1a19 | 106 |
109 |
110 |
--------------------------------------------------------------------------------
/test-output/BDD Test Suite/Regression Test.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
Tests passed/Failed/Skipped: | 65 |1/0/0 | 66 |
Started on: | 69 |Fri Apr 12 11:10:09 IST 2019 | 70 |
Total time: | 73 |225 seconds (225302 ms) | 74 |
Included groups: | 77 |78 | |
Excluded groups: | 81 |82 | |
PASSED TESTS | 91 ||||
Test method | 94 |Exception | 95 |Time (seconds) | 96 |Instance | 97 |
feature Test 100 | class: com.cucumberFramework.testRunner.TestRunner Test 101 | method: Runs cucmber Features Parameters: As a Amazon user I 102 | should be able to login and logout with valid credentials |
103 | 104 | | 224 | 105 |com.cucumberFramework.testRunner.TestRunner@7d9d1a19 | 106 |
109 |
110 |
--------------------------------------------------------------------------------
/test-output/Default suite/Default test.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
Test | # Passed | # Skipped | # Failed | Time (ms) | Included Groups | Excluded Groups |
---|---|---|---|---|---|---|
Default suite | ||||||
Default test | 1 | 0 | 0 | 225,302 |
Class | Method | Start | Time (ms) |
---|---|---|---|
Default suite | |||
Default test — passed | |||
com.cucumberFramework.testRunner.TestRunner | feature | 1555047609915 | 224543 |
Parameter #1 |
---|
As a Amazon user I should be able to login and logout with valid credentials |
Class name | 4 |Method name | 5 |Groups | 6 |
---|---|---|
com.cucumberFramework.testRunner.TestRunner | 8 |||
@Test | 11 |||
14 | | feature | 15 |cucumber | 16 |
@BeforeClass | 19 |||
22 | | setUpClass | 23 ||
@BeforeMethod | 26 |||
@AfterMethod | 29 |||
@AfterClass | 32 |||
35 | | testDownClass | 36 |
Group name | Methods |
cucumber | TestRunner.feature(cucumber.api.testng.CucumberFeatureWrapper)[pri:0, instance:com.cucumberFramework.testRunner.TestRunner@7d9d1a19] |
Time | Delta (ms) | Suite configuration | Test configuration | Class configuration | Groups configuration | Method configuration | Test method | Thread | Instances |
---|---|---|---|---|---|---|---|---|---|
19/04/11 15:29:37 | 0 | feature | 5 |main@422250493 | ||||||
19/04/11 15:29:37 | -328 | >>setUpClass | 7 |main@422250493 | ||||||
19/04/11 15:29:37 | 47 | <<testDownClass | 9 |main@422250493 |
Time | Delta (ms) | Suite configuration | Test configuration | Class configuration | Groups configuration | Method configuration | Test method | Thread | Instances |
---|---|---|---|---|---|---|---|---|---|
19/04/11 15:29:37 | 0 | >>setUpClass | 5 |main@422250493 | ||||||
19/04/11 15:29:37 | 328 | feature | 7 |main@422250493 | ||||||
19/04/11 15:29:37 | 375 | <<testDownClass | 9 |main@422250493 |
Results for
BDD Test Suite
1 test | 12 |1 class | 13 |1 method: 14 | chronological 15 | alphabetical 16 | not run (0) |
17 |
1 group | 20 |reporter output | 21 |testng.xml | 22 |
25 |
|
Class name | 4 |Method name | 5 |Groups | 6 |
---|---|---|
com.cucumberFramework.testRunner.TestRunner | 8 |||
@Test | 11 |||
14 | | feature | 15 |cucumber | 16 |
@BeforeClass | 19 |||
22 | | setUpClass | 23 ||
@BeforeMethod | 26 |||
@AfterMethod | 29 |||
@AfterClass | 32 |||
35 | | testDownClass | 36 |
Group name | Methods |
cucumber | TestRunner.feature(cucumber.api.testng.CucumberFeatureWrapper)[pri:0, instance:com.cucumberFramework.testRunner.TestRunner@7d9d1a19] |
Time | Delta (ms) | Suite configuration | Test configuration | Class configuration | Groups configuration | Method configuration | Test method | Thread | Instances |
---|---|---|---|---|---|---|---|---|---|
19/04/12 11:10:09 | 0 | feature | 5 |main@422250493 | ||||||
19/04/12 11:10:09 | -552 | >>setUpClass | 7 |main@422250493 | ||||||
19/04/12 11:13:54 | 224545 | <<testDownClass | 9 |main@422250493 |
Time | Delta (ms) | Suite configuration | Test configuration | Class configuration | Groups configuration | Method configuration | Test method | Thread | Instances |
---|---|---|---|---|---|---|---|---|---|
19/04/12 11:10:09 | 0 | >>setUpClass | 5 |main@422250493 | ||||||
19/04/12 11:10:09 | 552 | feature | 7 |main@422250493 | ||||||
19/04/12 11:13:54 | 225097 | <<testDownClass | 9 |main@422250493 |
Results for
Default suite
1 test | 12 |1 class | 13 |1 method: 14 | chronological 15 | alphabetical 16 | not run (0) |
17 |
1 group | 20 |reporter output | 21 |testng.xml | 22 |
25 |
|
Test results
6 |Suite | Passed | Failed | Skipped | testng.xml |
---|---|---|---|---|
Total | 1 | 0 | 0 | |
Default suite | 9 |1 | 0 | 0 | Link |