You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.
├── TEST-AUTOMATION-FRAMEWORK # Here you can find the entire project.
| ├── cypress # This folder contains all the cypress structure
│ ├── apiObjects # This folder contains all the API Objects which can be consumed by API Test
| ├── UtilsAPI.js # All the common API utility methods goes here
│ ├── config # This folder contains all the environment configs
| ├── dev.json # dev environment related config goes here
| ├── qa.json # qa environment related config goes here
│ ├── Cucumber # This folder is core of the project related features
| ├── api # dev environment related config goes here
| ├── step_def/feature # This folder contains api level feature files and step definition files
| ├── integration # Contains all UI related feature files and step definition files
| ├── step_def/feature # This folder contains UI automation feature files and step definition files
| ├── integration # Folder that includes the whole framework structure
| ├── Cucumber-bdd-tests # Folder with all the Feature files which are actual tests to execute with '.feature' extension
| ├── pages # All the pages for respective features
| ├── selectors # Locators with respective to specific page
| └── step_definitions # Step Definitions for each Feature file
│ ├── fixtures # Fixtures are used as external pieces of static data that can be used by your tests
|
|
|
|
| ├── pageObjects # All the page level Objects goes here
| ├── plugins # Plugins that enable to modify the internal behavior of Cypress
| ├── report # Report related artifacts
| ├── support # Place for reusable behavior or Custom Commands.
.
├── TEST-AUTOMATION-FRAMEWORK # Here you can find the entire project.
| ├── cypress # This folder contains all the cypress structure
│ ├── apiObjects # This folder contains all the API Objects which can be consumed by API Test
| ├── UtilsAPI.js # All the common API utility methods goes here
│ ├── config # This folder contains all the environment configs
| ├── dev.json # dev environment related config goes here
| ├── qa.json # qa environment related config goes here
│ ├── Cucumber # This folder is core of the project related features
| ├── api # dev environment related config goes here
| ├── step_def/feature # This folder contains api level feature files and step definition files
| ├── integration # Contains all UI related feature files and step definition files
| ├── step_def/feature # This folder contains UI automation feature files and step definition files
| ├── integration # Folder that includes the whole framework structure
| ├── Cucumber-bdd-tests # Folder with all the Feature files which are actual tests to execute with '.feature' extension
| ├── pages # All the pages for respective features
| ├── selectors # Locators with respective to specific page
| └── step_definitions # Step Definitions for each Feature file
│ ├── fixtures # Fixtures are used as external pieces of static data that can be used by your tests
|
|
|
|
| ├── pageObjects # All the page level Objects goes here
| ├── plugins # Plugins that enable to modify the internal behavior of Cypress
| ├── report # Report related artifacts
| ├── support # Place for reusable behavior or Custom Commands.
|
| ├── node_modules
| ├── .prettierrc
| ├── cypress.json # Configuration file for Cypress
| ├── package-lock.json
| ├── package.json # Lists of packages
| └── README.md
The text was updated successfully, but these errors were encountered: