Cypress-POM-Ready-To-Use (2024 Edition)
A production-ready Cypress automation framework with Page Object Model, supporting both UI and API testing.
Key Features.
- TypeScript support with type definitions
- Page Object Model implementation
- API testing capabilities with custom commands
- Parallel test execution
- CI/CD ready with GitHub Actions
- Environment-based configuration
- Comprehensive reporting
- Built-in retry mechanisms for flaky tests
Quick Start
git clone https://github.com/padmarajnidagundi/Cypress-POM-Ready-To-Use
cd Cypress-POM-Ready-To-Use
npm run presetup
npm run setup
npm run verify
npm run cypress:open
npm run test:ui
npm run test:api
npm run test:parallel
npm run test:ci
Troubleshooting Installation
If you encounter the error 'cypress' is not recognized as an internal or external command
, follow these steps:
- Clear npm cache and node_modules:
npm cache clean --force
rm -rf node_modules
rm -rf package-lock.json
npm run presetup
npm run verify
npm run cypress:open
For QA Engineers
Writing UI Tests
import BasePage from '../basePage'
class LoginPage extends BasePage {
private selectors = {
username: '#username',
password: '#password',
submitBtn: '[data-testid="login-btn"]'
}
login(username: string, password: string) {
this.getElement(this.selectors.username).type(username)
this.getElement(this.selectors.password).type(password)
this.getElement(this.selectors.submitBtn).click()
}
}
import LoginPage from '../../pageObjects/pages/loginPage'
describe('Login Tests', () => {
const loginPage = new LoginPage()
beforeEach(() => {
loginPage.visit('/login')
})
it('should login successfully', () => {
loginPage.login('testuser', 'password')
})
})
Writing API Tests
describe('Users API', () => {
it('should create a new user', () => {
cy.request({
method: 'POST',
url: '/api/users',
body: {
name: 'Test User',
role: 'QA'
}
}).then(response => {
expect(response.status).to.eq(201)
})
})
})
Best Practices
-
Selectors
- Use data-testid attributes:
[data-testid="login-button"]
- Store selectors in page objects
- Use meaningful selector names
-
Test Organization
cypress/
āāā e2e/
ā āāā api/ # API Tests
ā ā āāā users/
ā ā āāā auth/
ā āāā ui/ # UI Tests
ā āāā login/
ā āāā dashboard/
āāā pageObjects/
ā āāā components/ # Reusable components
ā āāā pages/ # Page specific objects
āāā fixtures/ # Test data
- Custom Commands
- Create reusable commands for common operations
- Use TypeScript for better type checking
- Document command parameters
Environment Configuration
module.exports = {
env: {
apiUrl: 'https://api.dev.example.com',
userRole: 'admin',
featureFlags: {
newUI: true
}
}
}
Running Tests in CI
- GitHub Actions (pre-configured)
npm run test:ci
- Jenkins (sample configuration)
pipeline {
agent any
stages {
stage('Test') {
steps {
sh 'npm ci'
sh 'npm run test:ci'
}
}
}
}
Test Reporting
This framework uses Mochawesome for comprehensive HTML reporting. Get detailed insights with screenshots, videos, and test execution metrics.
- Available Report Commands
npm run report:clean
npm run report:merge
npm run report:generate
npm run test:report
-
Report Features
- Interactive HTML dashboard
- Test execution timeline
- Suite and test-level statistics
- Failure screenshots embedded in report
- Test execution videos
- Performance metrics
- Filter and search capabilities
- Responsive design for mobile viewing
-
Report Structure
cypress/reports/
āāā html/ # HTML reports
ā āāā assets/ # Screenshots, videos
ā āāā report.html # Main report
ā āāā report.json # Combined results
āāā json/ # Individual test JSONs
- Reporter Configuration
Add these options to
cypress.config.js
:
module.exports = defineConfig({
reporter: 'cypress-mochawesome-reporter',
reporterOptions: {
charts: true,
reportPageTitle: 'Test Report',
embeddedScreenshots: true,
inlineAssets: true,
saveAllAttempts: false,
reportDir: 'cypress/reports/html',
overwrite: false,
html: true,
json: true
}
})
-
Viewing Reports
- Open
cypress/reports/html/report.html
in any browser
- Reports are self-contained and can be shared
- Support offline viewing
- Can be hosted on any static server
-
CI/CD Integration
- name: Generate Test Report
if: always()
run: npm run test:report
- name: Upload Test Report
if: always()
uses: actions/upload-artifact@v4
with:
name: test-report
path: cypress/reports/html
Debugging Tips
-
Time Travel
- Use Cypress Time Travel feature
- Check screenshots in
cypress/screenshots
- Review videos in
cypress/videos
-
Logging
- Use
cy.log()
for debug information
- Enable Chrome DevTools in interactive mode
Contributing
We welcome contributions that help improve this Cypress Page Object Model framework! Here's how you can contribute:
Types of Contributions
-
Page Objects
- New page object implementations
- Improvements to existing page objects
- Utility functions for common actions
-
Test Examples
- UI test examples
- API test examples
- Integration test patterns
-
Documentation
- Usage examples
- Best practices
- Troubleshooting guides
How to Contribute
-
Fork and Clone
git clone https://github.com/YOUR_USERNAME/Cypress-POM-Ready-To-Use.git
cd Cypress-POM-Ready-To-Use
npm install
-
Create a Branch
git checkout -b feature/your-feature-name
-
Make Changes
- Follow the existing code structure
- Add tests for new features
- Update documentation as needed
-
Contribution Guidelines
- Use TypeScript for new files
- Follow the page object pattern
- Add JSDoc comments for methods
- Include test cases for new features
class ExamplePage extends BasePage {
private selectors = {
submitButton: '[data-testid="submit"]'
}
submitForm(data: string) {
return this.getElement(this.selectors.submitButton).click()
}
}
-
Run Tests
npm run test
npm run lint
npm run build
-
Submit PR
- Create a Pull Request against the
main
branch
- Provide a clear description of changes
- Reference any related issues
- Wait for review and address feedback
Directory Structure for Contributions
cypress/
āāā e2e/ # Add tests here
ā āāā api/ # API test examples
ā āāā ui/ # UI test examples
āāā pageObjects/ # Add page objects here
ā āāā components/ # Reusable components
ā āāā pages/ # Page implementations
āāā support/ # Add custom commands here
āāā commands/ # Custom command implementations
Code Style Guide
-
Naming Conventions
- Use PascalCase for page objects:
LoginPage.ts
- Use camelCase for methods:
submitForm()
- Use descriptive test names:
'should successfully submit form'
-
File Organization
- One page object per file
- Group related tests in describe blocks
- Keep selectors in a separate object
-
Testing Standards
- Write atomic tests
- Use meaningful assertions
- Avoid hard-coded waits
Need Help?
- Check existing issues
- Join our [Discord community]
- Read our [documentation]
Support
- Documentation: See
docs/
folder
- Issues: GitHub Issues
- Community: [Join our Discord]
FAQ
Common Configuration Issues
-
Error with cypress.config.js
const { defineConfig } = require('cypress')
Solution: Ensure proper configuration setup:
- Install browserify preprocessor:
npm install @cypress/browserify-preprocessor --save-dev
- Use the complete configuration:
const { defineConfig } = require("cypress");
const createBundler = require("@cypress/browserify-preprocessor");
module.exports = defineConfig({
viewportWidth: 1920,
viewportHeight: 1080,
watchForFileChanges: false,
});
-
TypeScript Support
- Ensure these dependencies are installed:
{
"devDependencies": {
"@cypress/browserify-preprocessor": "^3.0.2",
"@types/node": "^20.11.16",
"typescript": "^5.3.3"
}
}
-
Running Tests
- For UI tests:
npm run test:ui
- For API tests:
npm run test:api
- For parallel execution:
npm run test:parallel
-
Environment Configuration
- Default environments are:
- API URL:
https://reqres.in
- React App URL:
https://react-redux.realworld.io
- Example URL:
https://example.cypress.io
Best Practices
-
Page Object Model
- Keep selectors in page objects
- Use data-testid attributes
- Implement base page for common functions
-
Test Organization
- API tests in
cypress/e2e/api/
- UI tests in
cypress/e2e/ui/
- Integration tests in
cypress/e2e/integration/
-
Performance
- Use
cy.session()
for login state
- Enable retries in CI mode
- Implement proper timeouts
License
MIT License - feel free to use in your projects
Contact