22 lines
498 B
Plaintext
22 lines
498 B
Plaintext
# Cognitive Prism Automation Testing - Requirements
|
|
# Python 3.8+ required
|
|
|
|
# Core Testing Framework
|
|
pytest>=7.4.0
|
|
pytest-html>=3.2.0
|
|
pytest-xdist>=3.3.0 # For parallel test execution
|
|
|
|
# Selenium WebDriver
|
|
selenium>=4.15.0
|
|
webdriver-manager>=4.0.0 # Automatic ChromeDriver management
|
|
|
|
# Data Handling
|
|
pandas>=2.0.0 # For CSV/data manipulation (if needed)
|
|
|
|
# Utilities
|
|
python-dotenv>=1.0.0 # For environment variables
|
|
|
|
# Optional but recommended
|
|
requests>=2.31.0 # For API testing (if needed)
|
|
|